Skip to content

Commit

Permalink
Skip fortify and LTO for i686 CI builds
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Oct 14, 2022
1 parent e7eeb69 commit 84c6af7
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:

env:
CACHE_VERSION: 2
CACHE_VERSION: 4
DEBIAN_FRONTEND: noninteractive
HOMEBREW_NO_AUTO_UPDATE: 1

Expand Down Expand Up @@ -101,6 +101,9 @@ jobs:
linux-i686:
runs-on: ubuntu-20.04
env:
PAWPAW_SKIP_FORTIFY: 1
PAWPAW_SKIP_LTO: 1
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -131,13 +134,13 @@ jobs:
run: |
pushd PawPaw; source local.env linux-i686; popd
make features
make NOOPT=true WITH_LTO=true all extra-win32 -j $(nproc)
make NOOPT=true all extra-win32 -j $(nproc)
- name: Build linux i686 extra
run: |
sudo apt-get install -yqq g++-multilib wine32-tools
pushd PawPaw; source local.env linux-i686; popd
make NOOPT=true WITH_LTO=true extra-wine32 -j $(nproc)
make CARLA_EXTRA_TARGETS=true NOOPT=true WITH_LTO=true -j $(nproc)
make NOOPT=true extra-wine32 -j $(nproc)
make CARLA_EXTRA_TARGETS=true NOOPT=true -j $(nproc)
- name: Set sha8
id: slug
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
Expand Down

0 comments on commit 84c6af7

Please sign in to comment.