MSVC v142 - VS 2019 C++ x64/x86 Build Tools installation on workflow … #86
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 CI [Windows] | |
on: | |
push: | |
paths: | |
- .github/workflows/** | |
- assets/** | |
- examples/** | |
- lib/** | |
- include/** | |
- src/** | |
- test/** | |
- build.py | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Python 3.12 Installation | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: MSVC v142 - VS 2019 C++ x64/x86 Build Tools | |
powershell: | | |
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
$client = new-object System.Net.WebClient | |
$client.DownloadFile("$(visual_bootstrapper)","vs_enterprise.exe") | |
.\vs_enterprise.exe modify --installPath "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise" --add Microsoft.VisualStudio.Component.VC.14.25.x86.x64 --passive --wait | |
- name: CUDA Toolkit | |
uses: Jimver/[email protected] | |
id: cuda-toolkit | |
with: | |
cuda: '12.5.0' | |
- name: Build Zhivo | |
run: | | |
python build.py | |
- name: Build verification | |
run: | | |
dir dist | |
tree dist | |
- name: Run test scripts (AMD64) | |
run: | | |
dist\zhivo-win32-amd64-openmp.exe test\arithmetic.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\array.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\digits.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\error_handling.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\flow.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\func.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\loop.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\parallel.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\regex.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\test.zhv | |
dist\zhivo-win32-amd64-openmp.exe test\types.zhv | |
- name: Run test scripts (CUDA) | |
run: | | |
dist\zhivo-win32-amd64-nvidia.exe test\arithmetic.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\array.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\digits.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\error_handling.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\flow.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\func.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\loop.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\parallel.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\regex.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\test.zhv | |
dist\zhivo-win32-amd64-nvidia.exe test\types.zhv | |
- name: Run examples (AMD64) | |
run: | | |
dist\zhivo-win32-amd64-openmp.exe examples\99-beers.zhv | |
dist\zhivo-win32-amd64-openmp.exe examples\hello.zhv | |
- name: Run examples (CUDA) | |
run: | | |
dist\zhivo-win32-amd64-nvidia.exe examples\99-beers.zhv | |
dist\zhivo-win32-amd64-nvidia.exe examples\hello.zhv | |
- name: Upload dist folder | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zhivo-windows-dist | |
path: dist/ |