Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
aali309 committed Oct 11, 2023
1 parent 6a794b6 commit 8a7f904
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci-build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
description: the Cryostat application version that will be built
value: ${{ jobs.get-pom-properties.outputs.image-version }}

permissions:
contents: read
packages: read

jobs:
get-pom-properties:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -111,6 +115,10 @@ jobs:
with:
java-version: '17'
distribution: 'temurin'
- name: Download Cryostat Image Artifact
uses: actions/download-artifact@v3
with:
name: cryostat-${{ inputs.build-arch }}
- name: Load cryostat image
run: podman load -i cryostat-${{ inputs.build-arch }}.tar
- uses: skjolber/maven-cache-github-action@v1
Expand All @@ -130,7 +138,7 @@ jobs:

retest-integration-test:
runs-on: ubuntu-latest
if: ${{ inputs.run-tests-only && !inputs.skip-itests }}
if: ${{ inputs.run-tests-only && !inputs.skip-itests}}
steps:
- name: Install xpath
run: |
Expand All @@ -153,10 +161,6 @@ jobs:
with:
java-version: '17'
distribution: 'temurin'
- name: Download Cryostat Image Artifact
uses: actions/download-artifact@v3
with:
name: cryostat-${{ inputs.build-arch }}
- name: Load Cryostat Image
run: podman load -i ./cryostat-${{ inputs.build-arch }}.tar
- uses: skjolber/maven-cache-github-action@v1
Expand Down

0 comments on commit 8a7f904

Please sign in to comment.