-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from minhanghuang/feat-ci
chore(ci): Added ubuntu-latest(24.04) ci config
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: ubuntu-latest v9.0.0 build arrch64 | ||
run-name: CyberRT v9.0.0 build runner on ubuntu latest arrch64🚀 | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/ubuntu-latest-arrch64-v9.0.0-build.yaml' | ||
|
||
pull_request: | ||
types: [opened, synchronize, reopened, closed] | ||
|
||
jobs: | ||
build-arm-ubuntu-latest: | ||
if: github.event.action == 'closed' | ||
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 libpoco-dev 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)" |
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