Skip to content

Commit

Permalink
CI: added build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhardy committed May 18, 2021
1 parent 965ca1e commit d371f39
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
on:
push:
branches:
- master
pull_request:
branches:
- master

name: "Build"

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-20.04
- windows-2019
- macos-10.15
env:
ARCHIVE: 1

steps:
- name: "Checkout"
uses: actions/checkout@v2

- name: "Compile"
run: make release

- name: "Upload artifacts"
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}
path: bspc*

0 comments on commit d371f39

Please sign in to comment.