mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
name: C/C++ CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
fetch-depth: 1
|
|
- name: apt
|
|
run: sudo apt update && sudo apt install libusb-1.0-0-dev libsqlite3-dev ninja-build protobuf-compiler
|
|
- name: make
|
|
run: make
|
|
|
|
build-macos:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
fetch-depth: 1
|
|
- name: brew
|
|
run: brew install sqlite pkg-config libusb ninja protobuf
|
|
- name: make
|
|
run: make
|
|
|
|
build-windows:
|
|
runs-on: windows-latest
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
update: false
|
|
msystem: MINGW32
|
|
install: >-
|
|
make
|
|
ninja
|
|
mingw-w64-i686-libusb
|
|
mingw-w64-i686-sqlite3
|
|
mingw-w64-i686-zlib
|
|
mingw-w64-i686-gcc
|
|
zip
|
|
mingw-w64-i686-protobuf
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
fetch-depth: 1
|
|
- name: build
|
|
run: |
|
|
make
|
|
|