blob: 2feb447122fd3170115b9e4b5473349264fad532 (
plain)
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
46
47
48
|
name: MacOS Build CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: MacOS Build CI
runs-on: macos-latest
strategy:
matrix:
configuration: ['release'] # 'debug'
compiler: ['clang']
platform: ['x64']
steps:
- uses: actions/checkout@v2.3.4
with:
submodules: 'true'
fetch-depth: '0'
- name: build
run:
CC=${{matrix.compiler}}
CONFIGURATION=${{matrix.configuration}}
ARCH=${{matrix.platform}}
source ./github_macos_build.sh
- uses: actions/upload-artifact@v3
with:
name: slang-build-${{matrix.configuration}}-${{matrix.platform}}-${{matrix.compiler}}
path: |
bin/**/slangc
bin/**/slangd
bin/**/libslang.dylib
bin/**/libslang-llvm.dylib
bin/**/libslang-glslang.dylib
- name: test
run:
CONFIGURATION=${{matrix.configuration}}
CC=${{matrix.compiler}}
ARCH=${{matrix.platform}}
source ./github_test.sh
|