-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (60 loc) · 1.61 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Test
on:
push:
branches:
- '*'
- '*/**'
paths-ignore:
- 'README.md'
- '.gitignore'
- 'LICENSE'
- 'CHANGELOG.md'
- 'doc/**'
- 'sample/**'
- 'tools/create-release.py'
- '.github/workflows/publish.yml'
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app
jobs:
main:
runs-on: macOS-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build tests
shell: bash
run: xcodebuild build -project test/test.xcodeproj -scheme test -config Release -derivedDataPath DerivedData
- name: Run tests
shell: bash
run: DerivedData/Build/Products/Release/test
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
shell: bash
run: |
echo "::group::Update System"
sudo apt-get install -y ninja-build
echo "::endgroup::"
echo "::group::Clang"
wget https://apt.llvm.org/llvm.sh
chmod u+x llvm.sh
sudo ./llvm.sh 16
echo "::endgroup::"
echo "::group::libdispatch"
git clone --depth=1 https://github.com/apple/swift-corelibs-libdispatch.git
cd swift-corelibs-libdispatch
cmake -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -S . -B build
cmake --build build
sudo cmake --install build --prefix=/usr
echo "::endgroup::"
- name: Build tests
shell: bash
run: |
cd test
CLANG=clang++-16 make
- name: Run tests
shell: bash
run: test/build/test