Make sure wasm builds never have LTO enabled
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
7ade20936f
commit
0e904c715a
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -773,7 +773,7 @@ jobs:
|
||||||
source ~/PawPawBuilds/emsdk/emsdk_env.sh
|
source ~/PawPawBuilds/emsdk/emsdk_env.sh
|
||||||
pushd deps/PawPaw; source local.env wasm; popd
|
pushd deps/PawPaw; source local.env wasm; popd
|
||||||
make features
|
make features
|
||||||
make CIBUILD=true NOOPT=true USE_GLES2=true -j $(nproc)
|
make CIBUILD=true NOOPT=true USE_GLES2=true WITH_LTO=false -j $(nproc)
|
||||||
- name: Set sha8 (non-release)
|
- name: Set sha8 (non-release)
|
||||||
if: startsWith(github.ref, 'refs/tags/') != true
|
if: startsWith(github.ref, 'refs/tags/') != true
|
||||||
run: echo "SHA8=$(echo ${{ github.sha }} | cut -c1-8)" >> $GITHUB_ENV
|
run: echo "SHA8=$(echo ${{ github.sha }} | cut -c1-8)" >> $GITHUB_ENV
|
||||||
|
|
@ -835,7 +835,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
source ~/emsdk/emsdk_env.sh
|
source ~/emsdk/emsdk_env.sh
|
||||||
make features
|
make features
|
||||||
make CIBUILD=true NOPLUGINS=true STATIC_BUILD=true USE_GLES2=true -j $(nproc)
|
make CIBUILD=true NOPLUGINS=true STATIC_BUILD=true USE_GLES2=true WITH_LTO=false -j $(nproc)
|
||||||
- name: Set sha8 (non-release)
|
- name: Set sha8 (non-release)
|
||||||
if: startsWith(github.ref, 'refs/tags/') != true
|
if: startsWith(github.ref, 'refs/tags/') != true
|
||||||
run: echo "SHA8=$(echo ${{ github.sha }} | cut -c1-8)" >> $GITHUB_ENV
|
run: echo "SHA8=$(echo ${{ github.sha }} | cut -c1-8)" >> $GITHUB_ENV
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue