CI: Try to work around download-artifact problems #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '21' | |
cache: 'gradle' | |
- name: Cache Kotlin Native | |
id: cache-konan | |
uses: actions/cache@v4 | |
with: | |
path: ~/.konan | |
key: ${{ runner.os }}-build-konan-${{ hashFiles('*gradle.*') }} | |
restore-keys: | | |
${{ runner.os }}-build-konan- | |
- name: Build binaries and assemble distribution | |
run: | | |
make dist && | |
zip -r9 jaunch-${{ matrix.os }}.zip dist | |
- name: Upload platform distribution | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jaunch-${{ matrix.os }} | |
path: jaunch-${{ matrix.os }}.zip | |
dist: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache UPX | |
id: cache-upx | |
uses: actions/cache@v4 | |
with: | |
path: .upx | |
key: ${{ runner.os }}-dist-upx | |
- name: Download platform distributions | |
uses: actions/download-artifact@v4 | |
- name: Merge platform distributions | |
run: | | |
for z in jaunch-*/*.zip; do unzip "$z"; done | |
- name: Pack binaries and assemble distribution | |
run: | | |
bash bin/pack.sh | |
zip -r9 jaunch.zip dist | |
- name: Upload merged distribution | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jaunch | |
path: jaunch.zip |