New attempt at D language generator. #317
Workflow file for this run
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: Build | |
on: [push, pull_request] | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: lukka/get-cmake@latest | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: build debug | |
run: python3 fips build win64-vstudio-debug | |
- name: build release | |
run: python3 fips build win64-vstudio-release | |
- name: test | |
run: python3 fips run_tests win64-vstudio-release | |
mac: | |
runs-on: macos-latest | |
steps: | |
- uses: lukka/get-cmake@latest | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: build debug | |
run: python3 fips build osx-ninja-debug | |
- name: build release | |
run: python3 fips build osx-ninja-release | |
- name: test | |
run: python3 fips run_tests osx-ninja-release | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lukka/get-cmake@latest | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: build debug | |
run: python fips build linux-ninja-debug | |
- name: build release | |
run: python fips build linux-ninja-release | |
- name: test | |
run: python3 fips run_tests linux-ninja-release |