Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't automatically update test262 submodule #663

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..
Expand Down Expand Up @@ -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 ..
Expand Down Expand Up @@ -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 ..
Expand Down Expand Up @@ -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 ..
Expand All @@ -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" ..
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
path = test262
url = https://github.com/tc39/test262
shallow = true
update = none
Loading