-
Notifications
You must be signed in to change notification settings - Fork 100
38 lines (29 loc) · 1.3 KB
/
tas-sync-check.yml
File metadata and controls
38 lines (29 loc) · 1.3 KB
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
name: TAS Sync Check
on:
pull_request:
branches: [dev]
jobs:
check:
strategy:
matrix:
tas:
- name: Celeste 100%
url: "https://github.com/VampireFlower/CelesteTAS/archive/50f912ebf9a5721c6e3e6439649154aaae66d033.zip"
path: "CelesteTAS-50f912ebf9a5721c6e3e6439649154aaae66d033/0 - 100%.tas"
- name: Strawberry Jam All Levels
url: "https://github.com/VampireFlower/StrawberryJamTAS/archive/c99c0bc38afc86131030c35c5e0cf024fdda0587.zip"
path: "StrawberryJamTAS-c99c0bc38afc86131030c35c5e0cf024fdda0587/0-SJ All Levels.tas"
bundle: "https://celestemodupdater.0x0a.de/pinned-mods/StrawberryJam2021-Bundle-49a17f39.zip"
runs-on: ubuntu-latest
timeout-minutes: 60
name: ${{ matrix.tas.name }}
steps:
- uses: actions/checkout@v6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Wait for Azure build on commit ${{ github.sha }}
run: cd .github/tas-check && ./1-get-build-url.sh "${{ github.sha }}"
- name: Install Everest and required mods
run: cd .github/tas-check && ./2-1-install.sh "${{ matrix.tas.url }}" "${{ matrix.tas.bundle }}"
- name: Run TAS at ${{ matrix.tas.path }}
run: cd .github/tas-check && ./3-run.sh "${{ matrix.tas.path }}"