-
Notifications
You must be signed in to change notification settings - Fork 4
195 lines (193 loc) · 7 KB
/
ci.yaml
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
name: CI
on:
push:
branches:
- main
- "sync-map-*"
paths-ignore:
- "tools/**"
- "cloud/**"
pull_request:
paths-ignore:
- "tools/**"
- "cloud/**"
workflow_dispatch:
inputs:
deploy:
description: "Deploy?"
required: true
type: boolean
default: false
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/scripts-setup
with:
cache-name: build
download-artifacts: 'false'
- name: Build
run: source .envrc && make -j $(nproc)
- name: Test
run: source .envrc && make -j $(nproc) test
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: gen-artifacts
path: gen
deploy-cdn:
runs-on: ubuntu-latest
needs: build-and-test
if: vars.MAPS_METADATA_BUCKET_NAME && (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: gen-artifacts
path: gen
- name: Install Rclone
run: |
curl -L https://rclone.org/install.sh | sudo bash
- name: Deploy
run: ./scripts/deploy.sh ${{ github.sha }} ${{ !env.ACT && (github.ref == 'refs/heads/main' || github.event.inputs.deploy == true) }}
env:
CLOUDFLARE_ACCOUNT_ID: ${{ vars.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_ACCESS_KEY_ID: ${{ vars.CLOUDFLARE_R2_ACCESS_KEY_ID }}
CLOUDFLARE_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }}
R2_BUCKET_NAME: ${{ vars.MAPS_METADATA_BUCKET_NAME }}
- name: Publish update on MQTT
uses: juhrlass/[email protected]
with:
protocol: mqtts
host: broker.hivemq.com
port: 8883
topic: dev.beyondallreason.maps-metadata/live_maps/updated:v1
message: ${{ github.sha }}
deploy-chobby:
runs-on: ubuntu-latest
needs: build-and-test
if: vars.ENABLE_BYAR_CHOBBY_PUSH && ((github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch')
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/scripts-setup
with:
cache-name: chobby
- name: Checkout BYAR-Chobby
uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/BYAR-Chobby
path: BYAR-Chobby
ssh-key: ${{ secrets.SSH_BYAR_CHOBBY_DEPLOY_KEY }}
- name: Patch Chobby
run: |
source .envrc
tsx scripts/js/src/update_byar_chobby_images.ts BYAR-Chobby
cp gen/mapDetails.lua BYAR-Chobby/LuaMenu/configs/gameConfig/byar/mapDetails.lua
cp gen/mapBoxes.conf BYAR-Chobby/LuaMenu/configs/gameConfig/byar/savedBoxes.dat
- name: Commit and push
uses: stefanzweifel/git-auto-commit-action@v5
with:
repository: BYAR-Chobby
commit_message: |
Automatic update of maps from maps-metadata
From commit ${{ github.repository }}@${{ github.sha }}
deploy-spads-config:
runs-on: ubuntu-latest
needs: build-and-test
if: vars.ENABLE_SPADS_CONFIG_PUSH && ((github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch')
steps:
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: gen-artifacts
path: gen
- name: Checkout SPADS Config
uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/spads_config_bar
path: spads_config_bar
ssh-key: ${{ secrets.SSH_SPADS_CONFIG_DEPLOY_KEY }}
- name: Patch SPADS Config
run: |
cp gen/mapBoxes.conf spads_config_bar/etc/mapBoxes.conf
cp gen/mapLists.conf spads_config_bar/etc/mapLists.conf
cp gen/mapPresets.conf spads_config_bar/etc/mapPresets.conf
cp gen/mapBattlePresets.conf spads_config_bar/etc/mapBattlePresets.conf
python3 scripts/py/update_spads_conf.py spads_config_bar/etc/spads_cluster.conf
- name: Commit and push
uses: stefanzweifel/git-auto-commit-action@v5
with:
repository: spads_config_bar
commit_message: |
Automatic update of maps from maps-metadata
From commit ${{ github.repository }}@${{ github.sha }}
deploy-website:
runs-on: ubuntu-latest
needs: build-and-test
if: vars.WEBFLOW_COLLECTION_ID && ((github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch')
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/scripts-setup
with:
cache-name: website
- name: Push to website
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 10
command: |
source .envrc
tsx scripts/js/src/sync_to_webflow.ts sync
env:
WEBFLOW_API_TOKEN: ${{ secrets.WEBFLOW_API_TOKEN }}
WEBFLOW_COLLECTION_ID: ${{ vars.WEBFLOW_COLLECTION_ID }}
deploy-gdrive:
runs-on: ubuntu-latest
needs: build-and-test
if: vars.ENABLE_GDRIVE_PUSH && ((github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch')
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/scripts-setup
with:
cache-name: gdrive
- name: Authenticate to Google Cloud
id: auth
uses: google-github-actions/auth@v2
with:
workload_identity_provider: projects/187238959541/locations/global/workloadIdentityPools/github-actions/providers/github
service_account: [email protected]
- name: Push to GDrive
run: |
source .envrc
tsx scripts/js/src/sync_to_gdrive.ts sync
deploy-teiserver:
runs-on: ubuntu-latest
needs: build-and-test
if: vars.TEISERVER_URL && ((github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch')
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/scripts-setup
with:
cache-name: website
- name: Push to teiserver
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 30
command: |
source .envrc
tsx scripts/js/src/sync_to_teiserver.ts
env:
TEISERVER_URL: ${{ vars.TEISERVER_URL }}
TEISERVER_CLIENT_ID: ${{ vars.TEISERVER_CLIENT_ID }}
TEISERVER_CLIENT_SECRET: ${{ secrets.TEISERVER_CLIENT_SECRET }}