isolate failing workflows #2662
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: CI | |
on: [push] | |
jobs: | |
cache-submodule: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: env/setup.sh | |
- uses: ./.github/actions/submodule | |
build-lnx-srv: | |
needs: [cache-submodule] | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# XXX: armhf is missing rcrt1.o | |
machine: [x86_64, arm64] | |
steps: | |
- run: sudo rm -rf /opt | |
- uses: actions/checkout@v4 | |
- run: env/setup.sh | |
- uses: ./.github/actions/submodule | |
- run: env/setup-ndk.sh | |
- run: debug=crossndk make -j3 -C srv-daemon machine=${{ matrix.machine }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: orchidd-lnx-${{ matrix.machine }} | |
path: srv-daemon/out-lnx/${{ matrix.machine }}/orchidd | |
if: ${{ matrix.machine != 'x86_64' }} | |
- run: git status | |