Skip to content

isolate failing workflows #2662

isolate failing workflows

isolate failing workflows #2662

Workflow file for this run

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