Skip to content

Commit d371f39

Browse files
committed
CI: added build pipeline
1 parent 965ca1e commit d371f39

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
pull_request:
6+
branches:
7+
- master
8+
9+
name: "Build"
10+
11+
jobs:
12+
build:
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
matrix:
16+
os:
17+
- ubuntu-20.04
18+
- windows-2019
19+
- macos-10.15
20+
env:
21+
ARCHIVE: 1
22+
23+
steps:
24+
- name: "Checkout"
25+
uses: actions/checkout@v2
26+
27+
- name: "Compile"
28+
run: make release
29+
30+
- name: "Upload artifacts"
31+
uses: actions/upload-artifact@v2
32+
with:
33+
name: ${{ runner.os }}
34+
path: bspc*

0 commit comments

Comments
 (0)