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

38 lines
733 B
YAML
Raw Normal View History

2021-10-09 17:47:11 +02:00
name: Continuous Build MacOS
on:
push:
branches:
- OSX
tags-ignore:
- '*.*'
paths:
- 'src/**'
- '!src/linux/**'
- '!src/freebsd/**'
- 'include/**'
- 'Makefile'
- '.github/workflows/*'
jobs:
build-osx:
2021-10-09 17:47:11 +02:00
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install build tools
run: |
git checkout OSX
- name: Compile
run: |
2021-10-09 17:56:57 +02:00
make CXX=g++-11 ARCH=x86_64
2021-10-09 17:47:11 +02:00
GIT_HASH=$(git rev-parse --short "$GITHUB_SHA")
mv bin/btop bin/btop-x86_64-$GIT_HASH
2021-10-09 18:10:11 +02:00
ls -alh bin
2021-10-09 17:47:11 +02:00
- uses: actions/upload-artifact@v2
with:
2021-10-09 18:16:33 +02:00
name: btop-x86_64-macos
2021-10-09 18:10:11 +02:00
path: 'bin/*'