Skip to content

Commit

Permalink
Merge branch 'main' into ext-mongodb-opentracing-listener
Browse files Browse the repository at this point in the history
  • Loading branch information
juazugas authored Mar 30, 2021
2 parents 9439c6c + 06e7f62 commit 8ca78b0
Show file tree
Hide file tree
Showing 1,331 changed files with 18,353 additions and 3,735 deletions.
17 changes: 16 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ updates:
- dependency-name: org.yaml:snakeyaml
- dependency-name: com.google.guava:guava
- dependency-name: com.vackosar.gitflowincrementalbuilder:gitflow-incremental-builder
- dependency-name: com.jcraft:jzlib
- dependency-name: org.jboss.logging:*
- dependency-name: org.jboss.logmanager:*
# Quarkus
- dependency-name: io.quarkus.gizmo:gizmo
- dependency-name: io.quarkus.http:*
Expand All @@ -34,7 +37,8 @@ updates:
- dependency-name: org.postgresql:postgresql
- dependency-name: org.mariadb.jdbc:mariadb-java-client
- dependency-name: mysql:mysql-connector-java
- dependency-name: org.apache.derby:derbyclient
- dependency-name: org.apache.derby:*
- dependency-name: com.ibm.db2:jcc
# Kafka
- dependency-name: org.apache.kafka:*
- dependency-name: org.apache.zookeeper:zookeeper
Expand Down Expand Up @@ -94,20 +98,31 @@ updates:
- dependency-name: com.github.ben-manes.caffeine:caffeine
# Jackson
- dependency-name: com.fasterxml.jackson:jackson-bom
- dependency-name: com.fasterxml:classmate
# AWS
- dependency-name: software.amazon.awssdk:*
- dependency-name: com.amazon.alexa:*
- dependency-name: com.amazonaws:*
- dependency-name: com.amazonaws.serverless:*
# Azure
- dependency-name: com.microsoft.azure.functions:*
# Apache Commons
- dependency-name: commons-io:commons-io
- dependency-name: org.apache.commons:commons-lang3
- dependency-name: commons-codec:commons-codec
# Micrometer
- dependency-name: io.micrometer:micrometer-bom
# BouncyCastle
- dependency-name: org.bouncycastle:*
# Logstash
- dependency-name: biz.paluch.logging:logstash-gelf
- dependency-name: io.sentry:*
# MongoDB
- dependency-name: org.mongodb:*
# Avro
- dependency-name: org.apache.avro:*
# gRPC
- dependency-name: io.grpc:*
rebase-strategy: disabled
- package-ecosystem: gradle
directory: "/integration-tests/gradle"
Expand Down
2 changes: 1 addition & 1 deletion .github/native-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
{
"category": "Misc4",
"timeout": 65,
"test-modules": "smallrye-config smallrye-graphql picocli-native gradle micrometer-mp-metrics micrometer-prometheus smallrye-metrics logging-json jaxp"
"test-modules": "smallrye-config smallrye-graphql picocli-native gradle micrometer-mp-metrics micrometer-prometheus smallrye-metrics logging-json jaxp opentelemetry"
},
{
"category": "Spring",
Expand Down
4 changes: 4 additions & 0 deletions .github/quarkus-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,10 @@ triage:
- extensions/cache/
- integration-tests/cache/
- labels: [area/cli]
title: "cli |qs "
directories:
- devtools/cli/
notify: [maxandersen,ebullient,gsmet]
- labels: [area/config]
directories:
- extensions/config-yaml/
Expand Down Expand Up @@ -437,3 +439,5 @@ triage:
- labels: [kind/extension-proposal]
title: quarkiverse
notify: [gastaldi, gsmet, aloubyansky]
qe:
notify: [rsvoboda, mjurc]
115 changes: 115 additions & 0 deletions .github/workflows/jdk-early-access-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
name: Quarkus Early Access JDK Build

on:
schedule:
# midnight every weekday + saturday
- cron: '0 0 * * 1-6'
workflow_dispatch:
inputs:
jdkVersion:
description: 'JDK version'
required: true
# switch to 17-ea once 16 has been fixed and is running in regular CI
# make sure to keep the default of JDK_VERSION in sync!
default: '16'

env:
JDK_VERSION: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.jdkVersion || '16' }}
# Workaround testsuite locale issue
LANG: en_US.UTF-8
JVM_TEST_MAVEN_OPTS: "-e -B --settings .github/mvn-settings.xml -Dtest-containers -Dstart-containers -Dformat.skip"
DB_USER: hibernate_orm_test
DB_PASSWORD: hibernate_orm_test
DB_NAME: hibernate_orm_test
jobs:
linux-jvm-test:
name: "JVM Tests - Early Access JDK Build"
runs-on: ubuntu-latest
if: "github.repository == 'quarkusio/quarkus' || github.event_name == 'workflow_dispatch'"
timeout-minutes: 360
env:
MAVEN_OPTS: -Xmx2048m -XX:MaxMetaspaceSize=1000m
steps:

- name: Set up JDK
# AdoptOpenJDK does not seem to provide EA builds, so use the standard action which provides a Zulu JDK
uses: actions/setup-java@v1
with:
java-version: ${{ env.JDK_VERSION }}
- name: Print Java version
shell: bash
run: java -version

- name: Stop mysql
shell: bash
run: |
ss -ln
sudo service mysql stop || true
- uses: actions/checkout@v2
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.ref || 'main' }}
- uses: n1hility/cancel-previous-runs@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
workflow: jdk-early-access-build.yml
- name: Reclaim Disk Space
run: .github/ci-prerequisites.sh
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y-%m")"
shell: bash
- name: Cache Maven Repository
id: cache-maven
uses: actions/cache@v2
with:
path: ~/.m2/repository
# refresh cache every month to avoid unlimited growth
# also add JDK version to key to avoid poisioning of the CI cache
key: q2maven-${{ steps.get-date.outputs.date }}-${{ env.JDK_VERSION }}
- name: Build with Maven
# try to gather as many failures as possible, test reports are evaluated in subsequent actions
run: |
mvn $JVM_TEST_MAVEN_OPTS -Dtcks install -fae -Dmaven.test.failure.ignore=true
- name: Publish Test Report
if: always()
uses: scacap/action-surefire-report@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# fail required to upload failure archive in subsequent actions
fail_on_test_failures: true
- name: Publish Gradle Test Report
if: always()
uses: scacap/action-surefire-report@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# fail required to upload failure archive in subsequent actions
fail_on_test_failures: true
check_name: 'Test Report for Gradle'
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Prepare failure archive (if maven failed)
if: failure()
shell: bash
run: find . -name '*-reports' -type d -o -name '*.log' | tar -czf test-reports.tgz -T -
- name: Upload failure Archive (if maven failed)
uses: actions/upload-artifact@v1
if: failure()
with:
name: test-reports-linux-jvm${{ env.JDK_VERSION }}
path: 'test-reports.tgz'
- name: Delete Local Artifacts From Cache
if: always()
shell: bash
run: rm -r ~/.m2/repository/io/quarkus
- name: Report status
uses: jbangdev/[email protected]
if: "always() && github.repository == 'quarkusio/quarkus' && github.event_name != 'workflow_dispatch'"
with:
script: .github/NativeBuildReport.java
scriptargs: |
issueNumber=15867
runId=${{ github.run_id }}
status=${{ job.status }}
token=${{ secrets.GITHUB_API_TOKEN }}
issueRepo=${{ github.repository }}
thisRepo=${{ github.repository }}
Loading

0 comments on commit 8ca78b0

Please sign in to comment.