btop/.github/workflows/continuous-build.yml

37 lines
1,021 B
YAML
Raw Normal View History

2021-10-06 00:13:31 +13:00
name: Continuous Build Linux
2021-10-05 21:42:36 +13:00
on:
push
jobs:
build:
2021-10-05 23:33:41 +13:00
runs-on: ubuntu-latest
container: ubuntu:21.04
2021-10-05 21:42:36 +13:00
steps:
- uses: actions/checkout@v2
2021-10-05 23:53:22 +13:00
- name: Install build tools
2021-10-05 21:42:36 +13:00
run: |
2021-10-05 23:33:41 +13:00
apt update && \
apt install coreutils sed git build-essential gcc-11 g++-11 -y
2021-10-06 01:16:08 +13:00
apt install g++-11-aarch64-linux-gnu -y
- name: Resolve git hash
2021-10-05 23:53:22 +13:00
run: |
git init
2021-10-05 23:53:22 +13:00
GIT_HASH=$(git rev-parse --short "$GITHUB_SHA")
mkdir multiarch_bin
2021-10-06 01:16:08 +13:00
- name: Compile x86_64
run: |
make CXX=g++-11 ARCH=x86_64 STATIC=true QUIET=true
mv bin/btop multiarch_bin/btop-x86_64-$GIT_HASH
2021-10-06 01:53:12 +13:00
make distclean
2021-10-06 01:16:08 +13:00
- name: Compile aarch64
run: |
make CXX=aarch64-linux-gnu-g++-11 ARCH=aarch64 STATIC=true QUIET=true
mv bin/btop multiarch_bin/btop-aarch64-$GIT_HASH
2021-10-06 01:53:12 +13:00
make distclean
2021-10-05 21:42:36 +13:00
- uses: actions/upload-artifact@v2
with:
2021-10-06 00:13:31 +13:00
name: btop
path: 'multiarch_bin/btop-*'