-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement output-name/add-runner-suffix on Gradle
- Loading branch information
1 parent
06b1308
commit 29d8554
Showing
46 changed files
with
1,868 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
name: Quarkus CI - Istio | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# 2am every weekday + saturday | ||
- cron: '0 2 * * 1-6' | ||
|
||
env: | ||
MAVEN_ARGS: -B -e | ||
|
||
jobs: | ||
cache: | ||
name: Build and save artifacts | ||
runs-on: ubuntu-latest | ||
if: "github.repository == 'quarkusio/quarkus' || github.event_name == 'workflow_dispatch'" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Install artifacts | ||
run: ./mvnw ${MAVEN_ARGS} -DskipTests -DskipITs -Dinvoker.skip clean install -pl :quarkus-integration-test-istio-invoker -am | ||
- name: Tar Maven repository | ||
shell: bash | ||
run: tar -I 'pigz -9' -cf maven-repo.tgz -C ~ .m2/repository | ||
- name: Persist Maven repository | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: maven-repo | ||
path: maven-repo.tgz | ||
retention-days: 1 | ||
|
||
kubernetes: | ||
name: Istio + Kubernetes Integration Tests | ||
needs: cache | ||
runs-on: ubuntu-latest | ||
if: "github.repository == 'quarkusio/quarkus' || github.event_name == 'workflow_dispatch'" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
kubernetes: [v1.20.1] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Download Maven repository | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: maven-repo | ||
path: . | ||
- name: Extract Maven repository | ||
shell: bash | ||
run: tar -xzf maven-repo.tgz -C ~ | ||
- name: Set up Minikube-Kubernetes | ||
uses: manusa/[email protected] | ||
with: | ||
minikube version: v1.16.0 | ||
kubernetes version: ${{ matrix.kubernetes }} | ||
github token: ${{ secrets.GITHUB_TOKEN }} | ||
start args: '--addons=metrics-server --force' | ||
- name: Quay login | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: quay.io | ||
username: ${{ secrets.QUAY_QUARKUSCI_USERNAME }} | ||
password: ${{ secrets.QUAY_QUARKUSCI_PASSWORD }} | ||
- name: Get kubeconfig | ||
id: kubeconfig | ||
run: a="$(cat ~/.kube/config)"; a="${a//'%'/'%25'}"; a="${a//$'\n'/'%0A'}"; a="${a//$'\r'/'%0D'}"; echo "::set-output name=config::$a" | ||
- name: Install Istio | ||
uses: huang195/[email protected] | ||
with: | ||
kubeconfig: "${{steps.kubeconfig.outputs.config}}" | ||
istio version: '1.15.2' | ||
- name: Run Istio Invoker Tests | ||
run: | | ||
export QUARKUS_CONTAINER_IMAGE_GROUP=quarkustesting | ||
export QUARKUS_CONTAINER_IMAGE_TAG=${{ github.sha }} | ||
export QUARKUS_CONTAINER_IMAGE_REGISTRY=quay.io | ||
./mvnw ${MAVEN_ARGS} clean install -pl :quarkus-integration-test-istio-invoker -De2e-tests -Dkubernetes-e2e-tests | ||
- name: Report status | ||
if: "always() && github.repository == 'quarkusio/quarkus'" | ||
shell: bash | ||
run: | | ||
curl -Ls https://sh.jbang.dev | bash -s - app setup | ||
~/.jbang/bin/jbang .github/NativeBuildReport.java \ | ||
issueNumber=29536 \ | ||
runId=${{ github.run_id }} \ | ||
status=${{ job.status }} \ | ||
token=${{ secrets.GITHUB_API_TOKEN }} \ | ||
issueRepo=${{ github.repository }} \ | ||
thisRepo=${{ github.repository }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.