File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,18 +19,13 @@ jobs:
1919 ubuntu :
2020 runs-on : ubuntu-latest
2121 strategy :
22- fail-fast : false
23- max-parallel : 4
2422 matrix :
2523 python-version : ['3.14']
2624 steps :
2725 - uses : actions/checkout@v6
28-
2926 - uses : actions/setup-python@v6
3027 with :
3128 python-version : ${{ matrix.python-version }}
32- architecture : x64
33-
3429 - env :
3530 MKN_LIB_LINK_LIB : 1
3631 run : |
@@ -43,46 +38,34 @@ jobs:
4338 macos :
4439 runs-on : macos-latest
4540 strategy :
46- fail-fast : false
47- max-parallel : 4
4841 matrix :
4942 python-version : ['3.14']
5043 steps :
5144 - uses : actions/checkout@v6
52-
5345 - uses : actions/setup-python@v6
5446 with :
5547 python-version : ${{ matrix.python-version }}
56- architecture : x64
57-
5848 - env :
5949 MKN_LIB_LINK_LIB : 1
6050 run : |
6151 $CURL_GET -o mkn ${PATH_GET}/mkn_arm_osx
6252 chmod +x mkn
6353 KLOG=3 ./mkn clean build run -dtOa "-std=c++20 -fPIC"
54+ KLOG=3 ./mkn clean build run -dtOa "-EHsc -std:c++20" -p test
6455 KLOG=3 ./mkn clean build -dtOa "-std=c++20 -fPIC" -p test_module
6556 python3 -c "import test_module as tm; tm.lol()"
6657
6758 windows :
6859 runs-on : windows-latest
6960 strategy :
70- fail-fast : false
71- max-parallel : 4
7261 matrix :
7362 python-version : ['3.14']
7463 steps :
7564 - uses : actions/checkout@v6
76-
7765 - uses : actions/setup-python@v6
7866 with :
7967 python-version : ${{ matrix.python-version }}
80- architecture : x64
81-
8268 - uses : ilammy/msvc-dev-cmd@v1
83- with :
84- arch : amd64
85-
8669 - env :
8770 MKN_CL_PREFERRED : 1
8871 shell : cmd
9275 bash -c 'KLOG=3 ./mkn clean build run -dtOa "-EHsc -std:c++20"'
9376 bash -c 'KLOG=3 ./mkn clean build run -dtOp test -a "-EHsc -std:c++20"'
9477 bash -c 'KLOG=3 ./mkn clean build -dtOa "-std:c++20 -EHsc" -p test_module'
95- python3 -c "import test_module as tm; tm.lol()"
78+ bash -c ' python3 -c "import test_module as tm; tm.lol()"'
You can’t perform that action at this time.
0 commit comments