Build and test Everest on Windows #5
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 and test Everest on Windows | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: [self-hosted, Windows, X64, opam-2-3] | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Everest reset | |
shell: C:\cygwin64\bin\bash.exe --login '{0}' | |
run: | | |
$GITHUB_WORKSPACE/everest --yes -j 8 -k reset && echo "There is a CR at the end of this line" | |
- name: Everest make | |
shell: C:\cygwin64\bin\bash.exe --login '{0}' | |
run: | | |
$GITHUB_WORKSPACE/everest -j 8 -k make && echo "There is a CR at the end of this line" | |
- name: Everest test | |
shell: C:\cygwin64\bin\bash.exe --login '{0}' | |
run: | | |
$GITHUB_WORKSPACE/everest -j 8 -k test && echo "There is a CR at the end of this line" |