Skip to content

Commit

Permalink
cicd: Removed native-image steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Ruaux committed May 26, 2023
1 parent 43e65f1 commit 5f12e04
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 33 deletions.
17 changes: 1 addition & 16 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,9 @@ jobs:
project-version: ${{ needs.precheck.outputs.version }}
project-effective-version: early-access

native-image:
name: Native Image
needs: [precheck, jlink]
uses: redis-developer/riot/.github/workflows/step-native-image.yml@main
with:
project-version: ${{ needs.precheck.outputs.version }}
secrets:
gh-access-token: ${{ secrets.GIT_ACCESS_TOKEN }}

release:
name: Release
needs: [precheck, jlink, jpackage, native-image]
needs: [precheck, jlink, jpackage]
runs-on: ubuntu-latest
outputs:
hashes: ${{ steps.slsa.outputs.HASHES }}
Expand Down Expand Up @@ -73,12 +64,6 @@ jobs:
name: jpackage
path: out/jreleaser/assemble/riot-installer/jpackage

- name: Download native-image
uses: actions/download-artifact@v3
with:
name: native-image
path: out/jreleaser/assemble/riot-native/native-image

- name: Release
uses: jreleaser/release-action@v2
with:
Expand Down
17 changes: 1 addition & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,9 @@ jobs:
project-version: ${{ needs.precheck.outputs.version }}
project-effective-version: ${{ needs.precheck.outputs.version }}

native-image:
name: Native Image
needs: [precheck, jlink]
uses: redis-developer/riot/.github/workflows/step-native-image.yml@main
with:
project-version: ${{ needs.precheck.outputs.version }}
secrets:
gh-access-token: ${{ secrets.GIT_ACCESS_TOKEN }}

release:
name: Release
needs: [precheck, jlink, jpackage, native-image]
needs: [precheck, jlink, jpackage]
runs-on: ubuntu-latest
outputs:
hashes: ${{ steps.slsa.outputs.HASHES }}
Expand Down Expand Up @@ -93,12 +84,6 @@ jobs:
name: jpackage
path: out/jreleaser/assemble/riot-installer/jpackage

- name: Download native-image
uses: actions/download-artifact@v3
with:
name: native-image
path: out/jreleaser/assemble/riot-native/native-image

- name: Setup Java
uses: actions/setup-java@v3
with:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/step-jlink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ jobs:
- name: Dependencies
run: |
ls -l plugins/riot/build/dependencies/flat
ls -l plugins/riot/build/dependencies/graalvm
- name: Upload artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 5f12e04

Please sign in to comment.