run tests on macOS #36
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
# This file is part of the Fuzion language implementation. | |
# | |
# The Fuzion language implementation is free software: you can redistribute it | |
# and/or modify it under the terms of the GNU General Public License as published | |
# by the Free Software Foundation, version 3 of the License. | |
# | |
# The Fuzion language implementation is distributed in the hope that it will be | |
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | |
# License for more details. | |
# | |
# You should have received a copy of the GNU General Public License along with The | |
# Fuzion language implementation. If not, see <https://www.gnu.org/licenses/>. | |
# ----------------------------------------------------------------------- | |
# | |
# Tokiwa Software GmbH, Germany | |
# | |
# GitHub Actions workflow to build and test Fuzion on MacOS. | |
# | |
# ----------------------------------------------------------------------- | |
name: run tests on macOS | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # every sunday | |
env: | |
PRECONDITIONS: true | |
POSTCONDITIONS: true | |
FUZION_REPRODUCIBLE_BUILD: true | |
jobs: | |
run_tests: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: install dependencies | |
run: | | |
brew install bdw-gc gnu-sed make | |
echo "/usr/local/opt/gnu-sed/libexec/gnubin:/usr/local/opt/gnu-make/libexec/gnubin:$PATH" >> $GITHUB_PATH | |
- name: sed version | |
run: sed --version | |
- name: make version | |
run: make --version | |
- name: build java code | |
run: make javac | |
- name: build (no java modules) | |
run: make no-java | |
- name: run tests | |
run: make run_tests |