We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f01921 commit abbf1f6Copy full SHA for abbf1f6
1 file changed
.github/workflows/build.yml
@@ -61,6 +61,8 @@ jobs:
61
$CURL_GET -o mkn ${PATH_GET}/mkn_arm_osx
62
chmod +x mkn
63
KLOG=2 ./mkn clean build run -dtOa "-std=c++20 -fPIC"
64
+ KLOG=2 ./mkn clean build -dtOa "-std=c++20 -fPIC" -p test_module
65
+ python3 -c "import test_module as tm; tm.lol()"
66
67
windows:
68
runs-on: windows-latest
@@ -89,3 +91,5 @@ jobs:
89
91
bash -c '$CURL_GET -o mkn.exe ${PATH_GET}/mkn.exe'
90
92
bash -c 'KLOG=2 ./mkn clean build run -dtOa "-EHsc -std:c++20"'
93
bash -c 'KLOG=2 ./mkn clean build run -dtOp test -a "-EHsc -std:c++20"'
94
+ bash -c 'KLOG=2 mkn clean build -dtOa "-std:c++20 -EHsc" -p test_module'
95
0 commit comments