-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (40 loc) · 1013 Bytes
/
build.yml
File metadata and controls
43 lines (40 loc) · 1013 Bytes
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
name: build
on:
push:
jobs:
build_win32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ilammy/msvc-dev-cmd@v1
- name: Compile
shell: bash
run: |
cd pocketpy
python cmake_build.py Release -DPK_ENABLE_DETERMINISM=OFF
cd ../
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
- uses: actions/upload-artifact@v4
with:
name: windows
path: build/Release/numpy.dll
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Compile and Test
run: |
cd pocketpy
python cmake_build.py Release -DPK_ENABLE_DETERMINISM=OFF
cd ../
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
- uses: actions/upload-artifact@v4
with:
name: linux
path: build/libnumpy.so