Revert #1045 #254
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: TAS Sync Check | |
| on: | |
| pull_request: | |
| branches: [dev] | |
| jobs: | |
| check: | |
| strategy: | |
| matrix: | |
| tas: | |
| - name: Celeste 100% | |
| url: "https://github.com/VampireFlower/CelesteTAS/archive/e6dfa34b8782c3dc88118d1fc14d29ceb73d036d.zip" | |
| path: "CelesteTAS-e6dfa34b8782c3dc88118d1fc14d29ceb73d036d/0 - 100%.tas" | |
| - name: Strawberry Jam All Levels | |
| url: "https://github.com/VampireFlower/StrawberryJamTAS/archive/495dd485b4e94f4d23d4fb5aa1350f24ff066d29.zip" | |
| path: "StrawberryJamTAS-495dd485b4e94f4d23d4fb5aa1350f24ff066d29/0-SJ All Levels.tas" | |
| bundle: "https://celestemodupdater.0x0a.de/pinned-mods/StrawberryJam2021-Bundle-46cc7e85.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 }}" |