Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jan 18, 2025
1 parent f8b8e04 commit 494074e
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ jobs:
# Disabling allTests should be enough, but https://youtrack.jetbrains.com/issue/KT-74509
# mosaic-terminal runs its tests above. We only run jvmTest otherwise as code is all common.
- run: >
./gradlew --continue
./gradlew
--continue
build
-x allTests
-x jvmJdk8Test
Expand Down Expand Up @@ -200,6 +201,22 @@ jobs:
path: build/dokka/htmlMultiModule/
if-no-files-found: error

status:
if: always()
runs-on: ubuntu-latest
needs:
- docs
- terminal-tests
- build
steps:
- name: Check
run: |
results=$(tr -d '\n' <<< '${{ toJSON(needs.*.result) }}')
if ! grep -q -v -E '(failure|cancelled)' <<< "$results"; then
echo "One or more jobs failed: $results"
exit 1
fi
publish:
if: ${{ github.ref == 'refs/heads/trunk' && github.repository == 'JakeWharton/mosaic' }}
runs-on: macos-15
Expand Down

0 comments on commit 494074e

Please sign in to comment.