Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ on:
tags: ["gloss-v*"]
pull_request:

# Keep only the newest validation for a pull request. A newer commit makes
# earlier runs obsolete; cancelling them preserves runner capacity and avoids
# stale success/failure notifications. Main and tag runs always finish.
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

permissions:
contents: read

Expand All @@ -16,7 +23,7 @@ jobs:
run:
working-directory: gloss-v1/grader
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
version: "0.8.4"
Expand All @@ -39,7 +46,7 @@ jobs:
run:
working-directory: gloss-v1/grader
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
version: "0.8.4"
Expand All @@ -55,8 +62,8 @@ jobs:
launch:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v7
- uses: actions/setup-node@v5
with:
node-version: "22"
- name: Install launch media inspector
Expand All @@ -68,7 +75,7 @@ jobs:
container:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- run: docker build --platform linux/amd64 --tag gloss-ci gloss-v1
- name: Verify frozen runtime and font inventory
run: |
Expand All @@ -94,7 +101,7 @@ jobs:
run:
working-directory: gloss-v1/service
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
version: "0.8.4"
Expand Down
Loading
Loading