Skip to content
Merged
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
9 changes: 7 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: '8.9'
cache-disabled: true

- name: Install galasactl with Homebrew
run: |
Expand Down Expand Up @@ -95,14 +96,18 @@ jobs:
# If this workflow was called after a Main build, it will share the github.event_name
# with the calling workflow, which is 'push'. Download the artifacts from that build.
- name: Ensure local Maven repo exists
run: mkdir -p /home/runner/.m2/repository
env:
HOME: /Users/runner
run: mkdir -p ${{ env.HOME }}/.m2/repository

- name: Download SimBank from Main Build
if: ${{ github.event_name == 'push' }}
uses: actions/download-artifact@v4
env:
HOME: /Users/runner
with:
name: simplatform
path: /home/runner/.m2/repository
path: ${{ env.HOME }}/.m2/repository

# If this workflow was called by the daily regression test run, build the code.
- name: Build SimBank using local build script
Expand Down