-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (46 loc) · 1.31 KB
/
test.yml
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
49
50
51
name: Test
on:
push:
branches: [main]
pull_request:
branches: ['*']
jobs:
macos:
name: macOS SPM unit tests
runs-on: macos-14
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.3
- name: Set up SDK
run: cd sdk && sudo make install
- name: Run tests
run: swift test
macos_raw:
name: macOS raw build
runs-on: macos-14
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.3
- name: Raw build
run: swift build
linux:
name: Linux SPM unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Give up and run in docker
run: 'docker run -v `pwd`:`pwd` -w `pwd` --name steamworks --rm swiftlang/swift:nightly-5.9-focal /bin/bash -c "apt-get update; apt-get install make; (cd sdk && make install); swift test -Xswiftc -cxx-interoperability-mode=default"'
# - name: Set up SDK
#run: cd sdk && sudo make install
#- name: Run tests
#run: swift test -Xswiftc -cxx-interoperability-mode=default