Skip to content

Commit

Permalink
Reformat workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
mk868 committed Nov 6, 2024
1 parent 4d7fd01 commit 6fb959f
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 85 deletions.
92 changes: 45 additions & 47 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,66 +8,64 @@ on:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven

- name: Cache jextract
id: cache-jextract
uses: actions/cache@v4
with:
path: jextract
key: 22-jextract+5-33
- name: Cache jextract
id: cache-jextract
uses: actions/cache@v4
with:
path: jextract
key: 22-jextract+5-33

- name: Set up jextract
if: steps.cache-jextract.outputs.cache-hit != 'true'
run: ./prepare-jextract.sh
- name: Set up jextract
if: steps.cache-jextract.outputs.cache-hit != 'true'
run: ./prepare-jextract.sh

- name: Check sources with Maven
run: |
mvn -B -f jgpio/pom.xml license:check
# TODO check formatting
- name: Check sources with Maven
run: |
mvn -B -f jgpio/pom.xml license:check
# TODO check formatting

- name: Build with Maven
run: |
./prepare.sh
mvn -B -f jgpio/pom.xml install -Djextract.bin=../jextract/bin/jextract
mvn -B -f jgpio-it/pom.xml package
mvn -B -f examples/pom.xml package
- name: Build with Maven
run: |
./prepare.sh
mvn -B -f jgpio/pom.xml install -Djextract.bin=../jextract/bin/jextract
mvn -B -f jgpio-it/pom.xml package
mvn -B -f examples/pom.xml package
- uses: actions/upload-artifact@v4
with:
name: jgpio-target
path: jgpio/target
- uses: actions/upload-artifact@v4
with:
name: jgpio-target
path: jgpio/target

test-it:
needs: build
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven

- uses: actions/download-artifact@v4
with:
name: jgpio-target
path: jgpio/target
- uses: actions/download-artifact@v4
with:
name: jgpio-target
path: jgpio/target

- name: Test IT
run: |
mvn -B -f jgpio/pom.xml jar:jar install:install
mvn -B -f jgpio-it/pom.xml verify
- name: Test IT
run: |
mvn -B -f jgpio/pom.xml jar:jar install:install
mvn -B -f jgpio-it/pom.xml verify
40 changes: 20 additions & 20 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven

- name: Set release version
run: |
mvn -B -ntp -f jgpio/pom.xml versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
mvn -B -ntp -f jgpio-it/pom.xml versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
mvn -B -ntp -f examples/pom.xml versions:set-property -Dproperty=jgpio.version -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
sed -i '/<version>/s/>.*</>${{ github.event.inputs.version }}</' README.md
- name: Set release version
run: |
mvn -B -ntp -f jgpio/pom.xml versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
mvn -B -ntp -f jgpio-it/pom.xml versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
mvn -B -ntp -f examples/pom.xml versions:set-property -Dproperty=jgpio.version -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
sed -i '/<version>/s/>.*</>${{ github.event.inputs.version }}</' README.md
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
title: 'Prepare release ${{ github.event.inputs.version }}'
body: 'Automated preparation of ${{ github.event.inputs.version }} release'
commit-message: 'Set version to ${{ github.event.inputs.version }}'
branch: 'release-${{ github.event.inputs.version }}'
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
title: 'Prepare release ${{ github.event.inputs.version }}'
body: 'Automated preparation of ${{ github.event.inputs.version }} release'
commit-message: 'Set version to ${{ github.event.inputs.version }}'
branch: 'release-${{ github.event.inputs.version }}'
36 changes: 18 additions & 18 deletions .github/workflows/prepare-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: '23'
distribution: 'temurin'
cache: maven

- name: Set release version
run: |
mvn -B -ntp -f jgpio/pom.xml versions:set -DnewVersion=${{ github.event.inputs.version }}-SNAPSHOT -DgenerateBackupPoms=false
mvn -B -ntp -f jgpio-it/pom.xml versions:set -DnewVersion=${{ github.event.inputs.version }}-SNAPSHOT -DgenerateBackupPoms=false
- name: Set release version
run: |
mvn -B -ntp -f jgpio/pom.xml versions:set -DnewVersion=${{ github.event.inputs.version }}-SNAPSHOT -DgenerateBackupPoms=false
mvn -B -ntp -f jgpio-it/pom.xml versions:set -DnewVersion=${{ github.event.inputs.version }}-SNAPSHOT -DgenerateBackupPoms=false
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
title: 'Prepare ${{ github.event.inputs.version }}-SNAPSHOT'
body: 'Automated preparation of ${{ github.event.inputs.version }}-SNAPSHOT'
commit-message: 'Set version to ${{ github.event.inputs.version }}-SNAPSHOT'
branch: 'snapshot-${{ github.event.inputs.version }}-SNAPSHOT'
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
title: 'Prepare ${{ github.event.inputs.version }}-SNAPSHOT'
body: 'Automated preparation of ${{ github.event.inputs.version }}-SNAPSHOT'
commit-message: 'Set version to ${{ github.event.inputs.version }}-SNAPSHOT'
branch: 'snapshot-${{ github.event.inputs.version }}-SNAPSHOT'

0 comments on commit 6fb959f

Please sign in to comment.