File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,14 @@ jobs:
30
30
shell : bash
31
31
run : |
32
32
export CFLAGS=-fPIC
33
- make -j$(nproc)
33
+ cmake -B build -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_QJS_LIBC=ON
34
+ cmake --build build -j $(nproc)
35
+
34
36
- name : Build - Windows
35
37
if : matrix.os == 'windows-latest'
36
38
working-directory : quickjs
37
39
run : |
38
- cmake -B build -G "Visual Studio 17 2022" -A x64
40
+ cmake -B build -G "Visual Studio 17 2022" -A x64 -DBUILD_QJS_LIBC=ON
39
41
cmake --build build --config Release
40
42
41
43
- name : Upload Artifacts Linux
57
59
uses : actions/upload-artifact@v4
58
60
with :
59
61
name : Swiftly.JS.Windows
60
- path : ${{ github.workspace }}/quickjs/build/Release/qjs.lib
62
+ path : ${{ github.workspace }}/quickjs/build/Release/qjs.lib
You can’t perform that action at this time.
0 commit comments