Skip to content

Update OTel SDK to 1.60.1, OTel Agent to 2.26.0 (#20) #67

Update OTel SDK to 1.60.1, OTel Agent to 2.26.0 (#20)

Update OTel SDK to 1.60.1, OTel Agent to 2.26.0 (#20) #67

Workflow file for this run

name: Build
on: [pull_request, push]
permissions: {}
jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu]
java: [11, 17, 21]
scala: [2.13, 3]
steps:
- name: Check out
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
cache: "gradle"
- name: Setup Gradle and run build
uses: gradle/actions/setup-gradle@v4
- name: Build
env:
SMOKE_TEST_JAVA_VERSION: ${{ matrix.java }} # the smoke tests will pick this up
SMOKE_TEST_SCALA_VERSION: ${{ matrix.scala }} # the smoke tests will pick this up
run: |
./gradlew smoke-tests-images:http4s:jibDockerBuild
./gradlew build