From aedb82d7b23eff8a008dda3fef090b59e2549bc6 Mon Sep 17 00:00:00 2001 From: Rostislav Svoboda Date: Mon, 18 Sep 2023 11:27:56 +0200 Subject: [PATCH 1/2] Drop native-image install step, Mandrel has it ootb --- .github/workflows/daily.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 26a5b7b..0435469 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -132,9 +132,6 @@ jobs: java-version: ${{ matrix.java }} components: 'native-image' github-token: ${{ secrets.GITHUB_TOKEN }} - - name: Install native-image component - run: | - gu.cmd install native-image - name: Configure Pagefile # Increased the page-file size due to memory-consumption of native-image command # For details see https://github.com/actions/virtual-environments/issues/785 From 83655d8bfae20038b5e9ba8c0c15d26658033f4d Mon Sep 17 00:00:00 2001 From: Rostislav Svoboda Date: Mon, 18 Sep 2023 11:28:47 +0200 Subject: [PATCH 2/2] Use the same workflow for PRs and daily runs --- .github/workflows/ci.yml | 23 ----------------------- .github/workflows/daily.yml | 1 + 2 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 5255c48..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: "Pull Request CI" -on: - - pull_request -jobs: - linux-build-released-jvm: - name: Linux - JVM build - released Quarkus - runs-on: ubuntu-latest - strategy: - matrix: - java: [ 11 ] - steps: - - uses: actions/checkout@v3 - - name: Install JDK {{ matrix.java }} - uses: actions/setup-java@v3 - with: - distribution: 'temurin' - java-version: ${{ matrix.java }} - check-latest: true - cache: 'maven' - - name: Build with Maven - run: mvn -s .github/mvn-settings.xml clean test -Dts.limit-extensions=1 - - name: Verify extension that needs special properties - run: mvn -s .github/mvn-settings.xml clean test -Dts.includes-combinations-only-with-extensions=oidc -Dts.limit-extensions=1 diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 0435469..1951261 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -1,5 +1,6 @@ name: "Daily Build" on: + pull_request: workflow_dispatch: schedule: - cron: '0 20 * * *'