Fix GitHub CI badge in README by creating one for each workflow. #178
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: Windows CI | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
Windows: | |
name: Windows | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
architecture: | |
# - '32' | |
- '64' | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: System Information | |
run: | | |
.\dev\ci\platform\coq-pf-01-sysinfo.bat | |
- name: Download Platform | |
env: | |
# Use a dedicated branch that follows master with some lag (manually updated) | |
PLATFORM: "https://github.com/coq/platform/archive/coq-ci.zip" | |
run: | | |
.\dev\ci\platform\coq-pf-02-download.bat | |
- name: Build Platform | |
env: | |
ARCH: ${{matrix.architecture}} | |
shell: cmd | |
run: | | |
.\dev\ci\platform\coq-pf-03-build.bat | |
- name: Build Installer | |
env: | |
ARCH: ${{matrix.architecture}} | |
shell: cmd | |
run: | | |
.\dev\ci\platform\coq-pf-04-installer.bat | |
- name: Upload Installer | |
uses: actions/upload-artifact@v3 | |
with: | |
name: windows-installer | |
path: artifacts | |
if-no-files-found: error |