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

28 lines
588 B
YAML
Raw Normal View History

2021-10-05 10:42:36 +02:00
name: Continuous Build
on:
push
jobs:
build:
2021-10-05 12:33:41 +02:00
runs-on: ubuntu-latest
container: ubuntu:21.04
2021-10-05 10:42:36 +02:00
steps:
- uses: actions/checkout@v2
2021-10-05 12:53:22 +02:00
- name: Install build tools
2021-10-05 10:42:36 +02:00
run: |
2021-10-05 12:33:41 +02:00
apt update && \
apt install coreutils sed git build-essential gcc-11 g++-11 -y
2021-10-05 12:53:22 +02:00
- name: Compile
run: |
make STATIC=true
git init
2021-10-05 12:53:22 +02:00
GIT_HASH=$(git rev-parse --short "$GITHUB_SHA")
mv bin/btop bin/btop-$GIT_HASH
2021-10-05 12:33:41 +02:00
2021-10-05 10:42:36 +02:00
- uses: actions/upload-artifact@v2
with:
2021-10-05 12:53:22 +02:00
name: Btop
path: 'bin/btop-*'