aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/actions.yaml
blob: 4825286140603260601b07cc50f6eb6b1326d9c8 (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
name: GitHub Actions Build
run-name: ${{ github.actor }} triggered a build
on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]
jobs:
  Build-on-Ubuntu:
    runs-on: [ubuntu-latest]
    steps:
      - uses: actions/checkout@v5
      - 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@v5
      - name: Build p9p
        run: ./INSTALL