Skip to content

Commit

Permalink
Holly cannot write yaml by hand
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed Sep 15, 2022
1 parent 49c0378 commit 79338f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,30 +334,30 @@ jobs:
run: .github/ci-prerequisites.sh

- name: Set up JDK ${{ matrix.java.java-version }}
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus"
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus'"
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java.java-version }}
architecture: ${{ matrix.java.architecture || 'x64' }}

- name: Download Maven Repo
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus"
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus'"
uses: actions/download-artifact@v3
with:
name: maven-repo
path: .
- name: Extract Maven Repo
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus"
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus'"
shell: bash
run: tar -xzf maven-repo.tgz -C ~
- name: Build
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus"
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus'"
shell: bash
# Despite the pre-calculated run_jvm flag, GIB has to be re-run here to figure out the exact submodules to build.
run: ./mvnw $COMMON_MAVEN_ARGS install -Dsurefire.timeout=1200 -pl !integration-tests/gradle -pl !integration-tests/maven -pl !integration-tests/devtools -pl !docs ${{ matrix.java.maven_args }} ${{ needs.build-jdk11.outputs.gib_args }}
- name: Clean Gradle temp directory
if: ${{ always() && "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus"}}
if: always() && !startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus'
shell: bash
run: devtools/gradle/gradlew --stop && rm -rf devtools/gradle/gradle-extension-plugin/build/tmp
- name: Prepare failure archive (if maven failed)
Expand All @@ -382,7 +382,7 @@ jobs:
LICENSE.txt
retention-days: 2
- name: Upload gc.log
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus"
if: "!startsWith(matrix.java.os-name, 'macos') || github.repository == 'quarkusio/quarkus'"
uses: actions/upload-artifact@v3
with:
name: "GC log - JDK ${{matrix.java.name}}"
Expand Down

0 comments on commit 79338f1

Please sign in to comment.