summaryrefslogtreecommitdiffstats
path: root/.github/workflows/continuous-build-macos.yml
blob: b747e92a9b91cf1d779b376f6e740230adfdadb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Continuous Build MacOS

on:
  push:
    branches:
      - OSX
    tags-ignore:
      - '*.*'
    paths:
      - 'src/**'
      - '!src/linux/**'
      - '!src/freebsd/**'
      - 'include/**'
      - 'Makefile'
      - '.github/workflows/*'

jobs:
  build-osx:

    runs-on: macos-latest

    steps:
      - uses: actions/checkout@v2
      - name: Install build tools
        run: |
          git checkout OSX
      - name: Compile
        run: |
          make CXX=g++-11 ARCH=x86_64
          GIT_HASH=$(git rev-parse --short "$GITHUB_SHA")
          mv bin/btop bin/btop-x86_64-$GIT_HASH
          ls -alh bin

      - uses: actions/upload-artifact@v2
        with:
          name: btop-x86_64-macos
          path: 'bin/*'