Skip to content

Commit 22e8eb8

Browse files
authored
update(builder): Remove LIBC
1 parent c3e4d08 commit 22e8eb8

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/builder.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
shell: bash
3131
run: |
3232
export CFLAGS=-fPIC
33-
cmake -B build -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_QJS_LIBC=ON
33+
cmake -B build -DCMAKE_INSTALL_PREFIX=/usr/local
3434
cmake --build build -j $(nproc)
3535
3636
- name: Build - Windows
3737
if: matrix.os == 'windows-latest'
3838
working-directory: quickjs
3939
run: |
40-
cmake -B build -G "Visual Studio 17 2022" -A x64 -DBUILD_QJS_LIBC=ON
40+
cmake -B build -G "Visual Studio 17 2022" -A x64
4141
cmake --build build --config Release
4242
4343
- name: Upload Artifacts Linux
@@ -52,9 +52,7 @@ jobs:
5252
uses: actions/upload-artifact@v4
5353
with:
5454
name: Swiftly.JS.Headers
55-
path: |
56-
${{ github.workspace }}/quickjs/quickjs.h
57-
${{ github.workspace }}/quickjs/quickjs-libc.h
55+
path: ${{ github.workspace }}/quickjs/quickjs.h
5856

5957
- name: Upload Artifacts Windows
6058
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)