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

33 lines
959 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
2021-10-06 02:04:51 +13:00
mkdir -p 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
2021-10-06 02:01:53 +13:00
mv bin/btop multiarch_bin/btop-x86_64-$(git rev-parse --short "$GITHUB_SHA")
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
2021-10-06 02:01:53 +13:00
mv bin/btop multiarch_bin/btop-aarch64-$(git rev-parse --short "$GITHUB_SHA")
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-*'