mirror of
https://github.com/DoneJS-Runtime/quickjs-done-nextgen.git
synced 2025-01-09 17:43:15 +00:00
Don't automatically update test262 submodule
This commit is contained in:
parent
04307af779
commit
cd2947bded
3 changed files with 12 additions and 0 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -157,6 +157,7 @@ jobs:
|
|||
- name: test 262
|
||||
if: ${{ matrix.config.runTest262 }}
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
time make test262
|
||||
|
||||
linux-gcc48:
|
||||
|
@ -259,6 +260,7 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
- name: build
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
cmake -B build -DBUILD_EXAMPLES=ON -G "Visual Studio 17 2022" -T ClangCL
|
||||
cmake --build build --config ${{matrix.buildType}}
|
||||
- name: stats
|
||||
|
@ -291,6 +293,7 @@ jobs:
|
|||
ninja.exe --version
|
||||
- name: build
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
cmake -B build -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=${{matrix.buildType}} -G "Ninja"
|
||||
cmake --build build
|
||||
- name: stats
|
||||
|
|
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
@ -17,6 +17,7 @@ jobs:
|
|||
- name: build
|
||||
shell: alpine.sh {0}
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DBUILD_STATIC_QJS_EXE=ON ..
|
||||
|
@ -45,6 +46,7 @@ jobs:
|
|||
- name: build
|
||||
shell: alpine.sh {0}
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DBUILD_STATIC_QJS_EXE=ON ..
|
||||
|
@ -73,6 +75,7 @@ jobs:
|
|||
- name: build
|
||||
shell: alpine.sh {0}
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DBUILD_STATIC_QJS_EXE=ON ..
|
||||
|
@ -102,6 +105,7 @@ jobs:
|
|||
- name: build
|
||||
shell: alpine.sh {0}
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DBUILD_STATIC_QJS_EXE=ON ..
|
||||
|
@ -126,6 +130,7 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
- name: build
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" ..
|
||||
|
@ -161,6 +166,7 @@ jobs:
|
|||
toolchain:p
|
||||
- name: build
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
make
|
||||
mv build/qjs.exe build/qjs-windows-x86.exe
|
||||
mv build/qjsc.exe build/qjsc-windows-x86.exe
|
||||
|
@ -193,6 +199,7 @@ jobs:
|
|||
toolchain:p
|
||||
- name: build
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
make
|
||||
mv build/qjs.exe build/qjs-windows-x86_64.exe
|
||||
mv build/qjsc.exe build/qjsc-windows-x86_64.exe
|
||||
|
@ -215,6 +222,7 @@ jobs:
|
|||
sudo apt install /tmp/wasi-sdk*.deb
|
||||
- name: build
|
||||
run: |
|
||||
git submodule update --init --checkout --depth 1
|
||||
cmake -B build -DCMAKE_TOOLCHAIN_FILE=/opt/wasi-sdk/share/cmake/wasi-sdk.cmake
|
||||
make -C build qjs_exe
|
||||
mv build/qjs build/qjs-wasi.wasm
|
||||
|
|
1
.gitmodules
vendored
1
.gitmodules
vendored
|
@ -2,3 +2,4 @@
|
|||
path = test262
|
||||
url = https://github.com/tc39/test262
|
||||
shallow = true
|
||||
update = none
|
||||
|
|
Loading…
Reference in a new issue