Skip to content

Commit

Permalink
Naming schemes and *more* context reachability
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan971 committed Jan 11, 2025
1 parent a132dc9 commit 95ce84f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-
${{ runner.os }}-
- name: "Maven Build (JIT)"
- name: "Maven Build"
uses: "./.github/actions/maven-build"
with:
BUILD_REVISION: "${{ needs.set_variables.outputs.build_version }}"
Expand All @@ -67,6 +67,7 @@ jobs:
path: "target/mcw.jar"

publish_hotspot:
name: "Publish (HotSpot)"
needs: [ "set_variables", "build_hotspot" ]
uses: "./.github/workflows/publish.yml"
with:
Expand Down Expand Up @@ -95,7 +96,7 @@ jobs:
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-
${{ runner.os }}-
- name: "Maven Build (AOT)"
- name: "Maven Build"
uses: "./.github/actions/maven-build"
with:
BUILD_REVISION: "${{ needs.set_variables.outputs.build_version }}"
Expand All @@ -107,6 +108,7 @@ jobs:
path: "target/mcw"

publish_graal:
name: "Publish (GraalVM)"
needs: [ "set_variables", "build_graal" ]
uses: "./.github/workflows/publish.yml"
with:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ on:
type: string
required: true

name: "Publish (${{ inputs.DOCKER_TARGET }})"

name: "Publish"
concurrency:
group: "${{ inputs.DOCKER_TAG_CANONICAL }}-${{ inputs.DOCKER_TARGET }}"

Expand Down

0 comments on commit 95ce84f

Please sign in to comment.