-
Notifications
You must be signed in to change notification settings - Fork 0
120 lines (111 loc) · 5 KB
/
ci.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
name: CI
on: [push]
env:
macos_ci_setup_token: ${{ secrets.MACOS_CI_SETUP_TOKEN }}
vm_name: sequoia-for-pillarbox
vm_image: ghcr.io/cirruslabs/macos-sequoia-xcode:latest
jobs:
install-tools:
runs-on:
labels: [tart, macos]
steps:
- name: Clone macos-ci-setup repository
run: |
rm -rf ~/macos-ci-setup
git clone -b add-scripts https://${{ env.macos_ci_setup_token }}@github.com/SRGSSR/macos-ci-setup.git ~/macos-ci-setup
- name: Install tools
run: |
cd ~/macos-ci-setup
./brew-fetch.sh ${{ env.vm_name }} "mint shellcheck markdownlint-cli yamllint ffmpeg"
./create-vm-for-project.sh ${{ env.vm_name }} ${{ env.vm_image }}
./clone-repo-in-vm.sh ${{ env.vm_name }} ${{ github.ref_name }} "https://${{ env.macos_ci_setup_token }}@github.com/${{ github.repository }}.git"
./run-vm-shell-command.sh ${{ env.vm_name }} "brew install --quiet mint shellcheck markdownlint-cli yamllint ffmpeg"
./run-vm-shell-command.sh ${{ env.vm_name }} "rbenv install --skip-existing 3.3.5"
./run-vm-shell-command.sh ${{ env.vm_name }} "echo 'export PATH=\"$HOME/.rbenv/bin:$PATH\"' >> ~/.zshrc"
./run-vm-shell-command.sh ${{ env.vm_name }} "rbenv init - >> ~/.zshrc"
./run-vm-shell-command.sh ${{ env.vm_name }} "rbenv global 3.3.5"
./run-vm-shell-command.sh ${{ env.vm_name }} "sudo gem install bundler -v 2.5.22"
./run-vm-shell-command.sh ${{ env.vm_name }} "curl --location https://github.com/shaka-project/shaka-packager/releases/download/v3.2.0/packager-osx-arm64 -o /opt/homebrew/bin/shaka-packager"
./run-vm-shell-command.sh ${{ env.vm_name }} "chmod a+x /opt/homebrew/bin/shaka-packager"
./run-vm-shell-command.sh ${{ env.vm_name }} "source ~/.zshrc"
setup-project:
needs: install-tools
runs-on:
labels: [tart, macos]
steps:
- name: Setup project
run: |
cd ~/macos-ci-setup
./run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && rm -rf Configuration"
./run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && Scripts/checkout-configuration.sh https://${{ env.macos_ci_setup_token }}@github.com/SRGSSR/pillarbox-apple-configuration.git certificate HEAD Configuration"
./run-vm-shell-command.sh ${{ env.vm_name }} "security unlock-keychain -p 'admin' ~/Library/Keychains/login.keychain-db && security import ~/_repo/Configuration/6YXTQTG8JJ_development.p12 -k ~/Library/Keychains/login.keychain-db -P '6YXTQTG8JJ' -T /usr/bin/security -T /usr/bin/codesign"
./run-vm-shell-command.sh ${{ env.vm_name }} "security set-key-partition-list -S apple-tool:,apple: -s -k 'admin' ~/Library/Keychains/login.keychain-db"
./run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && make setup"
# check-quality:
# needs: setup-project
# runs-on:
# labels: [tart, macos]
# steps:
# - name: Run the quality check
# run: |
# ~/macos-ci-setup/run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && make check-quality"
run-streams:
needs: install-tools
runs-on:
labels: [tart, macos]
steps:
- name: Run test streams
run: |
~/macos-ci-setup/run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && make test-streams-start"
download-spm-dependencies:
needs: setup-project
runs-on:
labels: [tart, macos]
steps:
- name: Download SPM packages
run: |
~/macos-ci-setup/run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && swift package resolve"
test-ios:
needs: [run-streams, download-spm-dependencies]
runs-on:
labels: [tart, macos]
steps:
- name: Run the iOS tests
run: |
~/macos-ci-setup/run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && make test-ios"
test-tvos:
needs: [run-streams, download-spm-dependencies]
runs-on:
labels: [tart, macos]
steps:
- name: Run the tvOS tests
run: |
~/macos-ci-setup/run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && make test-tvos"
archive-demo-ios:
needs: test-ios
runs-on:
labels: [tart, macos]
steps:
- name: Archive the iOS demo
run: |
~/macos-ci-setup/run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && security unlock-keychain -p 'admin' ~/Library/Keychains/login.keychain-db && make archive-demo-ios"
archive-demo-tvos:
needs: test-tvos
runs-on:
labels: [tart, macos]
steps:
- name: Archive the tvOS demo
run: |
~/macos-ci-setup/run-vm-shell-command.sh ${{ env.vm_name }} "cd ~/_repo && security unlock-keychain -p 'admin' ~/Library/Keychains/login.keychain-db && make archive-demo-tvos"
clean:
runs-on:
labels: [tart, macos]
needs: [archive-demo-ios, archive-demo-tvos]
if: always()
steps:
- name: Stop and remove the VM
run: |
set +e
tart stop ${{ env.vm_name }}
tart delete ${{ env.vm_name }}