add support for OTEL_RESOURCE_ATTRIBUTES, OTEL_SERVICE_NAME, OTEL_EXPORTER_OTLP_HEADERS and OTEL_EXPORTER_OTLP_PROTOCOL for spring boot starter #103
Workflow file for this run
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
name: PR build fake backend images for smoke tests | |
on: | |
pull_request: | |
paths: | |
- "smoke-tests/images/fake-backend/**" | |
- ".github/workflows/pr-smoke-test-fake-backend-images.yml" | |
jobs: | |
buildLinux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Free disk space | |
run: .github/scripts/gha-free-disk-space.sh | |
- name: Set up JDK for running Gradle | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17.0.6 | |
- name: Build Docker image | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: ":smoke-tests:images:fake-backend:jibDockerBuild -Djib.httpTimeout=120000 -Djib.console=plain" | |
cache-read-only: true | |
# gradle enterprise is used for the build cache | |
gradle-home-cache-excludes: caches/build-cache-1 | |
buildWindows: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Support long paths | |
run: git config --system core.longpaths true | |
- uses: actions/checkout@v4 | |
- name: Set up JDK for running Gradle | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17.0.6 | |
- name: Build Docker image | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: ":smoke-tests:images:fake-backend:windowsBackendImageBuild" | |
cache-read-only: true |