whitespace changes to re-gen pngs in github readme preview i guess #15
This file contains hidden or 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 all | |
| on: | |
| push: | |
| branches: [ "v2.0" ] | |
| pull_request: | |
| branches: [ "v2.0" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # step 0: bootstrap rustup | |
| - name: init rustup | |
| run: rustup default stable | |
| # step 1: install deps | |
| - name: install packages | |
| run: sudo apt install -y gcc make musl-tools musl-dev gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu | |
| - name: install x86_64 rust toolchain | |
| run: rustup target add x86_64-unknown-linux-musl | |
| - name: install aarch64 rust toolchain | |
| run: rustup target add aarch64-unknown-linux-musl | |
| - name: install armv7 rust toolchain | |
| run: rustup target add armv7-unknown-linux-musleabihf | |
| # step 2: build project | |
| - name: build x86_64 bins | |
| run: make all | |
| - name: Upload x86_64 bins | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: x86_64 | |
| path: build/x86_64/ | |
| - name: build aarch64 bins | |
| run: ARCH=aarch64 make all | |
| - name: Upload aarch64 bins | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: aarch64 | |
| path: build/aarch64/ | |
| - name: build armv7 bins | |
| run: CC=arm-linux-gnueabihf-gcc ARCH=armv7 make all | |
| - name: Upload armv7 bins | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: armv7 | |
| path: build/armv7/ |