-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (35 loc) · 816 Bytes
/
Copy pathc-cpp.yml
File metadata and controls
45 lines (35 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: C/C++ CI
on:
push:
branches:
- master
- test
pull_request:
branches:
- master
- test
jobs:
build_ubuntu_latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
run: cd spc2_pack; g++ --version; make
build_windows_latest:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: make
run: cd spc2_pack; g++ --version; make
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: spc2_pack
path: ${{ github.workspace }}/spc2_pack/*.exe
compression-level: 9 # maximum compression
build_macos_latest:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: make
run: cd spc2_pack; g++ --version; make