Somehow this file never got checked in?
This commit is contained in:
parent
df6cfe0410
commit
9579d3ba37
46
.github/workflows/ccpp.yml
vendored
Normal file
46
.github/workflows/ccpp.yml
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
name: C/C++ CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: apt
|
||||
run: sudo apt update && sudo apt install bison flex ninja-build
|
||||
- name: make
|
||||
run: make
|
||||
|
||||
build-macos:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: brew
|
||||
run: brew install ninja
|
||||
- name: make
|
||||
run: make
|
||||
|
||||
name: C/C++ CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: apt
|
||||
run: sudo apt update && sudo apt install bison flex ninja-build
|
||||
- name: make
|
||||
run: make
|
||||
|
||||
build-macos:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: brew
|
||||
run: brew install ninja
|
||||
- name: make
|
||||
run: make
|
||||
|
Loading…
Reference in a new issue