mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
.github/workflows/actions.yaml: Add
Basic configuration which builds p9p on latest Ubuntu & macOS. Skipped on adding more operating systems as build would hold up waiting for runners, whereas with -latest targets, build starts immediately. Supported runners can be found on https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job
This commit is contained in:
parent
897625ff9b
commit
e0dd1865ff
1 changed files with 20 additions and 0 deletions
20
.github/workflows/actions.yaml
vendored
Normal file
20
.github/workflows/actions.yaml
vendored
Normal file
|
@ -0,0 +1,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
|
Loading…
Reference in a new issue