ci: debug artifact output #97
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 | |
- 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: build_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 | |
steps: | |
- run: sudo apt-get install -y libasound2-dev libudev-dev llvm | |
- uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
- uses: rust-mobile/setup-xbuild-action@v1 | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Build apk | |
working-directory: sandpolis-client-mobile | |
run: | | |
x doctor | |
x build --arch arm64 --platform android --format apk | |
cd .. | |
tree -L 3 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build_artifacts | |
path: target/${{ matrix.target }}/debug/*.apk | |