plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

actions.yaml (567B)


      1 name: GitHub Actions Build
      2 run-name: ${{ github.actor }} triggered a build
      3 on:
      4   push:
      5     branches: [ "master" ]
      6   pull_request:
      7     branches: [ "master" ]
      8 jobs:
      9   Build-on-Ubuntu:
     10     runs-on: [ubuntu-latest]
     11     steps:
     12       - uses: actions/checkout@v3
     13       - name: Install build deps
     14         run: |
     15           sudo apt update
     16           sudo apt install build-essential xorg-dev
     17       - name: Build p9p
     18         run: ./INSTALL
     19   Build-on-macOS:
     20     runs-on: [macos-latest]
     21     steps:
     22       - uses: actions/checkout@v3
     23       - name: Build p9p
     24         run: ./INSTALL