Skip to content

Commit fbbe529

Browse files
committed
add example for OTLP logging via stdout and k8s
1 parent 53e0989 commit fbbe529

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.github/workflows/acceptance-tests.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,21 @@ jobs:
1313
steps:
1414
- name: Check out
1515
uses: actions/checkout@v4
16+
17+
- name: Set up JDK for running Gradle
18+
uses: actions/setup-java@v4
19+
with:
20+
distribution: temurin
21+
java-version: 17
22+
23+
- name: Set up gradle
24+
uses: gradle/actions/setup-gradle@v4
25+
with:
26+
cache-read-only: ${{ github.event_name == 'pull_request' }}
27+
28+
- name: Build
29+
run: ./gradlew clean check shadowJar
30+
1631
- name: Check out oats
1732
uses: actions/checkout@v4
1833
with:
@@ -22,13 +37,13 @@ jobs:
2237
- name: Set up Go
2338
uses: actions/setup-go@v5
2439
with:
25-
go-version: '1.21'
40+
go-version: '1.23'
2641
cache-dependency-path: oats/go.sum
2742
- name: Run acceptance tests
2843
run: .github/scripts/run-acceptance-tests.sh
2944
- name: upload log file
3045
uses: actions/upload-artifact@v4
3146
if: failure()
3247
with:
33-
name: log output
48+
name: OATS logs
3449
path: oats/yaml/build/**/*.log

0 commit comments

Comments
 (0)