Skip to content

Build and test Everest on Windows #5

Build and test Everest on Windows

Build and test Everest on Windows #5

Workflow file for this run

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"