summaryrefslogtreecommitdiffstats
path: root/.github/workflows/actions.yaml
blob: 680037eee0c4b439f7500d76bed1ff772e01526e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: GitHub Actions Build
run-name: ${{ github.actor }} triggered a build
on: [push]
jobs:
  Build-on-Ubuntu:
    runs-on: [ubuntu-latest]
    steps:
      - uses: actions/checkout@v3
      - name: Install build deps
        run: |
          sudo apt update
          sudo apt install build-essential xorg-dev
      - name: Build p9p
        run: ./INSTALL
  Build-on-macOS:
    runs-on: [macos-latest]
    steps:
      - uses: actions/checkout@v3
      - name: Build p9p
        run: ./INSTALL