-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d01126
commit 8ecfadc
Showing
8 changed files
with
145 additions
and
40 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
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,34 @@ | ||
name: ubuntu18.04 v8.0.0 build arrch64 | ||
run-name: CyberRT v8.0.0 build runner on ubuntu18 arrch64🚀 | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-arm-ubuntu18: | ||
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: ubuntu18.04 | ||
|
||
install: | | ||
apt update | ||
apt install -y lsb-release git wget pkg-config g++ cmake libpoco-dev uuid-dev libncurses5-dev python3-dev | ||
git clone --depth 1 --single-branch --branch v8.0.0 https://github.com/minhanghuang/CyberRT.git /root/workspace | ||
run: | | ||
echo "-----------------------" | ||
uname -a | ||
lsb_release -a | ||
echo "-----------------------" | ||
cd /root/workspace && ./scripts/install.sh | ||
bash -c "cd /root/workspace && 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
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,35 @@ | ||
name: ubuntu20.04 v8.0.0 build arrch64 | ||
run-name: CyberRT v8.0.0 build runner on ubuntu20 arrch64 🚀 | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-arm-ubuntu20: | ||
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: ubuntu20.04 | ||
|
||
install: | | ||
apt update | ||
apt install -y lsb-release git wget pkg-config g++ cmake libpoco-dev uuid-dev libncurses5-dev python3-dev | ||
git clone --depth 1 --single-branch --branch v8.0.0 https://github.com/minhanghuang/CyberRT.git /root/workspace | ||
run: | | ||
echo "-----------------------" | ||
uname -a | ||
lsb_release -a | ||
echo "-----------------------" | ||
cd /root/workspace && ./scripts/install.sh | ||
bash -c "cd /root/workspace && 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
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,33 @@ | ||
name: ubuntu22.04 v8.0.0 build arrch64 | ||
run-name: CyberRT v8.0.0 build runner on ubuntu22 arrch64🚀 | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
build-arm-ubuntu22: | ||
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: ubuntu22.04 | ||
|
||
install: | | ||
apt update | ||
apt install -y lsb-release git wget pkg-config g++ cmake libpoco-dev uuid-dev libncurses5-dev python3-dev | ||
git clone --depth 1 --single-branch --branch v8.0.0 https://github.com/minhanghuang/CyberRT.git /root/workspace | ||
run: | | ||
echo "-----------------------" | ||
uname -a | ||
lsb_release -a | ||
echo "-----------------------" | ||
cd /root/workspace && ./scripts/install.sh | ||
bash -c "cd /root/workspace && 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
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