Skip to content

Commit

Permalink
Update CI pipelines to support Mac/Native
Browse files Browse the repository at this point in the history
  • Loading branch information
milosmns committed Oct 30, 2023
1 parent 2576366 commit 7fc0885
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 14 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/build-ga.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,14 @@ jobs:
- name: Lint check
run: ./gradlew ktlintCheck

# - name: Build all targets
# run: ./gradlew assemble

- name: Build JVM targets
run: ./gradlew shadowJar
- name: Build all targets
run: ./gradlew assemble

- name: Run JVM tests
run: ./gradlew jvmTest

# - name: Run Mac/Native tests
# run: ./gradlew macNativeTest
- name: Run Mac/Native tests
run: ./gradlew macNativeTest

- name: Prepare for Publishing
run: ./gradlew prepareForPublish
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/build-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,14 @@ jobs:
- name: Lint check
run: ./gradlew ktlintCheck

# - name: Build all targets
# run: ./gradlew assemble

- name: Build JVM targets
run: ./gradlew shadowJar
- name: Build all targets
run: ./gradlew assemble

- name: Run JVM tests
run: ./gradlew jvmTest

# - name: Run Mac/Native tests
# run: ./gradlew macNativeTest
- name: Run Mac/Native tests
run: ./gradlew macNativeTest

- name: Prepare for Publishing
run: ./gradlew prepareForPublish
Expand Down

0 comments on commit 7fc0885

Please sign in to comment.