Skip to content

Commit

Permalink
Fix Linux release CI
Browse files Browse the repository at this point in the history
There is no need to download git submodules when making releases.
  • Loading branch information
saghul committed Nov 15, 2024
1 parent 859267c commit 706ba05
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ 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 @@ -46,7 +45,6 @@ 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 @@ -75,7 +73,6 @@ 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 @@ -105,7 +102,6 @@ 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 @@ -130,7 +126,6 @@ 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 @@ -166,7 +161,6 @@ 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 @@ -199,7 +193,6 @@ 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 @@ -222,7 +215,6 @@ 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

0 comments on commit 706ba05

Please sign in to comment.