Kanji CI #485
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kanji CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: | |
- '*' | |
schedule: | |
- cron: '30 11,23 * * *' | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
which java | |
java --version | |
echo "JAVA_HOME: ${JAVA_HOME}" | |
find "${JAVA_HOME}" -type f | |
- uses: actions/checkout@v4 | |
- name: Test (Debug) | |
run: swift test --configuration debug | |
- name: Test (Release) | |
run: swift test --configuration release --parallel | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check JVM | |
run: | | |
which java | |
java -version | |
echo "JAVA_HOME: ${JAVA_HOME}" | |
find "${JAVA_HOME}" -type f | |
- name: Test (Debug) | |
run: swift test --configuration debug | |
# crashing with: "PHI node operands are not the same type as the result!" | |
#- name: Test (Release) | |
# run: swift test --configuration release --parallel | |