This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 254b08d90ae8f6f5a8cd4a97bbf32a4e488d0b5c Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Fri Aug 28 09:32:56 2020 +0200 Rename build job in ci-build.yaml to initial-mvn-install --- .github/workflows/ci-build.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index ee9017c..fc6e0e4 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -47,7 +47,7 @@ env: LANG: en_US.UTF-8 jobs: - build: + initial-mvn-install: runs-on: ubuntu-latest env: MAVEN_OPTS: -Xmx3000m @@ -110,7 +110,7 @@ jobs: functional-extension-tests: runs-on: ubuntu-latest - needs: build + needs: initial-mvn-install if: github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'JVM') strategy: fail-fast: false @@ -158,7 +158,7 @@ jobs: extensions-jvm-tests: runs-on: ubuntu-latest - needs: build + needs: initial-mvn-install strategy: fail-fast: false matrix: @@ -199,7 +199,7 @@ jobs: integration-tests-alternative-jvm: runs-on: ubuntu-latest - needs: build + needs: initial-mvn-install if: github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'JVM') strategy: fail-fast: false @@ -241,12 +241,12 @@ jobs: native-tests: name: Native Tests - ${{matrix.category}} - needs: build + needs: initial-mvn-install runs-on: ubuntu-latest if: github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'JVM') strategy: fail-fast: false - matrix: ${{ fromJson(needs.build.outputs.matrix) }} + matrix: ${{ fromJson(needs.initial-mvn-install.outputs.matrix) }} steps: - name: Setup apache-snapshots profile if: github.ref == 'refs/heads/camel-master' || github.base_ref == 'camel-master' @@ -309,7 +309,7 @@ jobs: [[ -z $(git status --porcelain) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } examples-tests: - needs: build + needs: initial-mvn-install runs-on: ubuntu-latest if: github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'JVM') strategy: @@ -359,7 +359,7 @@ jobs: # memoryhogs: # runs-on: ubuntu-latest - # needs: build + # needs: initial-mvn-install # steps: # - name: Checkout # uses: actions/checkout@v2