Skip to content

Commit

Permalink
~ cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DrewCarlson committed Oct 25, 2024
1 parent d4b215a commit ba270ef
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,20 @@ jobs:

- name: Test Apple Targets
if: startsWith(matrix.os, 'macos')
run: ./gradlew linkMacosX64 #:ktpack:macosX64Test :ktpack-cli-tests:macosX64Test
run: ./gradlew clean linkMacosX64 #:ktpack:macosX64Test :ktpack-cli-tests:macosX64Test

- name: Test Linux Target
if: startsWith(matrix.os, 'ubuntu')
env:
KTPACK_PATH: /home/runner/work/ktpack
GRADLE_OPTS: -Dorg.gradle.daemon=false -Dkotlin.native.cacheKind.linuxX64=none
run: ./gradlew clean linkLinuxX64 #:ktpack:linuxX64Test :ktpack-cli-tests:linuxX64Test

- name: Test Windows Target
env:
GRADLE_OPTS: -Dorg.gradle.daemon=false
GRADLE_OPTS: -Dorg.gradle.daemon=false -Dkotlin.native.cacheKind.linuxX64=none
if: startsWith(matrix.os, 'windows')
run: ./gradlew linkWindowsX64 #:ktpack:windowsX64Test :ktpack-cli-tests:windowsX64Test
run: ./gradlew clean linkWindowsX64 #:ktpack:windowsX64Test :ktpack-cli-tests:windowsX64Test

- name: Publish Test Reports
uses: mikepenz/action-junit-report@v4
Expand Down

0 comments on commit ba270ef

Please sign in to comment.