igorburago triggered a build #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@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 |