From bbfdc4735dc75583ad743ca0d050614cd1a426e0 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 14 Jul 2024 01:18:14 -0700 Subject: [PATCH] Cleaned up CI workflows --- .circleci/config.yml | 6 ++++-- .github/workflows/bld.yml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 27fa3aa..cc42399 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,14 +19,16 @@ commands: candidate: kotlin version: 2.0.0 - run: - name: Download the dependencies + name: Download dependencies command: ./bld download - run: name: Compile source command: ./bld compile - run: name: Run tests - command: ./bld test + command: ./bld test -reports-dir=build/reports/test_results + - store_test_results: + path: build/reports/test_results jobs: bld_jdk17: diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index 90daaa7..96458eb 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -22,7 +22,7 @@ jobs: with: fetch-depth: 0 - - name: Set up JDK ${{ matrix.java-version }} + - name: Set up JDK ${{ matrix.java-version }} with Kotlin ${{ matrix.kotlin-version }} uses: actions/setup-java@v4 with: distribution: "zulu"