Skip to content

Commit

Permalink
ci: rename ssj github jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
obatirou committed Oct 1, 2024
1 parent 57f55af commit 69ae11c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ssj-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
permissions: read-all

jobs:
build:
ssj-build:
runs-on: ubuntu-latest
env:
CI_COMMIT_MESSAGE: CI Formatting Auto Commit
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ssj-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@ concurrency:
permissions: read-all

jobs:
build:
ssj-build:
uses: ./.github/workflows/ssj-build.yml
with:
artifact-name: kakarot-ssj-build

tests-unit:
ssj-tests-unit:
uses: ./.github/workflows/ssj-tests-unit.yml
with:
run-fmt-check: false

ef-tests:
ssj-ef-tests:
uses: ./.github/workflows/ssj-ef-tests.yml
needs: [build]
needs: [ssj-build]
with:
artifact-name: kakarot-ssj-build

resources:
ssj-resources:
runs-on: ubuntu-latest
needs: [ef-tests]
needs: [ssj-ef-tests]
steps:
- uses: actions/checkout@v4

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ssj-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ concurrency:
cancel-in-progress: true

jobs:
build:
ssj-build:
uses: ./.github/workflows/ssj-build.yml
with:
artifact-name: kakarot-ssj-build

tests-unit:
ssj-tests-unit:
uses: ./.github/workflows/ssj-tests-unit.yml
with:
run-fmt-check: true

ef-tests:
ssj-ef-tests:
uses: ./.github/workflows/ssj-ef-tests.yml
needs: [build]
needs: [ssj-build]
with:
artifact-name: kakarot-ssj-build

0 comments on commit 69ae11c

Please sign in to comment.