ci: disable fuser temporarily #137
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: | |
- master | |
jobs: | |
linux: | |
name: linux / ${{ matrix.target }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
# - aarch64-unknown-linux-gnu | |
# - aarch64-unknown-linux-musl | |
# - i686-unknown-linux-gnu | |
- x86_64-unknown-linux-gnu | |
# - x86_64-unknown-linux-musl | |
steps: | |
- run: sudo apt-get install -y libwayland-dev libasound2-dev libudev-dev libfuse3-dev | |
- uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --bin sandpolis --target ${{ matrix.target }} --all-features | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: linux_artifacts | |
path: target/${{ matrix.target }}/debug/sandpolis | |
android: | |
name: android / ${{ matrix.target }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- aarch64-linux-android | |
# - armv7-linux-androideabi | |
steps: | |
- run: sudo apt-get install -y libasound2-dev libudev-dev libfuse3-dev llvm | |
- uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: cargo-ndk | |
- name: Build native library | |
uses: ClementTsang/cargo-action@v0.0.6 | |
with: | |
command: ndk | |
args: -t arm64-v8a -o android/app/src/main/jniLibs build | |
directory: sandpolis-mobile | |
- name: Build apk | |
working-directory: sandpolis-mobile/android | |
run: | | |
./gradlew build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: android_artifacts | |
path: sandpolis-mobile/android/app/build/outputs/apk/debug/*.apk |