-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (48 loc) · 1.42 KB
/
swift.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: build
on:
push:
pull_request:
workflow_dispatch:
jobs:
darwin:
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: 🔍 Xcode Select
run: |
XCODE_PATH=`mdfind "kMDItemCFBundleIdentifier == 'com.apple.dt.Xcode' && kMDItemVersion = '16.*'" -onlyin /Applications | head -1`
echo "DEVELOPER_DIR=$XCODE_PATH/Contents/Developer" >> $GITHUB_ENV
- name: Fix permissions
run: chown -R $(id -u):$(id -g) $PWD
- name: Checkout submodules
run: |
git submodule init && git submodule update
(cd Sources/CAVDECC/avdecc && git submodule init && git submodule update)
- name: Version
run: swift --version
- name: Build
run: swift build
- name: Test
run: swift test
linux:
runs-on: ubuntu-24.04
container: swift:6.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Packages
run: |
apt-get update
- name: Fix permissions
run: chown -R $(id -u):$(id -g) $PWD
- name: Checkout submodules
run: |
git submodule init && git submodule update
(cd Sources/CAVDECC/avdecc && git submodule init && git submodule update)
- name: Version
run: swift --version
- name: Build
run: swift build --build-tests
- name: Test
run: swift test --skip-build