ubuntu latest arrch64 #11
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: ubuntu-latest v9.0.0 build arrch64 | |
run-name: ubuntu latest arrch64 | |
on: | |
push: | |
branches: | |
- v9.0.0 | |
jobs: | |
build-arm-ubuntu-latest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: uraimo/run-on-arch-action@v2 | |
name: Run commands | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
id: runcmd | |
with: | |
arch: aarch64 | |
distro: ubuntu_latest | |
install: | | |
apt update | |
apt install -y lsb-release git wget pkg-config g++ cmake uuid-dev libncurses5-dev python3-dev | |
run: | | |
echo "-----------------------" | |
uname -a | |
lsb_release -a | |
echo "-----------------------" | |
bash -c "python3 install.py && source install/setup.bash && mkdir -p build && cd build && cmake .. && make -j$(nproc)" |