-
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (63 loc) · 2.3 KB
/
build_ci_windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Build CI [Windows]
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: CUDA Toolkit
uses: Jimver/[email protected]
id: cuda-toolkit
with:
cuda: '12.5.0'
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Python 3.12 Installation
uses: actions/setup-python@v5
with:
python-version: '3.12'
- 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.exe test\arithmetic.zhv
dist\zhivo-win32-amd64.exe test\array.zhv
dist\zhivo-win32-amd64.exe test\digits.zhv
dist\zhivo-win32-amd64.exe test\error_handling.zhv
dist\zhivo-win32-amd64.exe test\flow.zhv
dist\zhivo-win32-amd64.exe test\func.zhv
dist\zhivo-win32-amd64.exe test\loop.zhv
dist\zhivo-win32-amd64.exe test\parallel.zhv
dist\zhivo-win32-amd64.exe test\regex.zhv
dist\zhivo-win32-amd64.exe test\test.zhv
dist\zhivo-win32-amd64.exe test\types.zhv
- name: Run test scripts (CUDA)
run: |
dist\zhivo-win32-amd64-cuda.exe test\arithmetic.zhv
dist\zhivo-win32-amd64-cuda.exe test\array.zhv
dist\zhivo-win32-amd64-cuda.exe test\digits.zhv
dist\zhivo-win32-amd64-cuda.exe test\error_handling.zhv
dist\zhivo-win32-amd64-cuda.exe test\flow.zhv
dist\zhivo-win32-amd64-cuda.exe test\func.zhv
dist\zhivo-win32-amd64-cuda.exe test\loop.zhv
dist\zhivo-win32-amd64-cuda.exe test\parallel.zhv
dist\zhivo-win32-amd64-cuda.exe test\regex.zhv
dist\zhivo-win32-amd64-cuda.exe test\test.zhv
dist\zhivo-win32-amd64-cuda.exe test\types.zhv
- name: Run examples (AMD64)
run: |
dist\zhivo-win32-amd64.exe examples\99-beers.zhv
dist\zhivo-win32-amd64.exe examples\hello.zhv
- name: Run examples (CUDA)
run: |
dist\zhivo-win32-amd64-cuda.exe examples\99-beers.zhv
dist\zhivo-win32-amd64-cuda.exe examples\hello.zhv