ci: install gcc-aarch64-linux-gnu #3
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 | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- aarch64-unknown-linux-gnu | |
- x86_64-unknown-linux-gnu | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Fluent CI and build webui | |
uses: fluentci-io/setup-fluentci@v5 | |
with: | |
wasm: true | |
pipeline: bun | |
args: | | |
run build | |
working-directory: webui | |
- name: build | |
run: | | |
sudo apt-get install -y build-essential gcc-aarch64-linux-gnu | |
fluentci run --wasm rust target_add ${{ matrix.target }} | |
fluentci run --wasm rust build --release --target ${{ matrix.target }} |