Skip to content

Commit

Permalink
LTO on
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Aug 15, 2023
1 parent e563203 commit 5eac94e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ jobs:
key: libs-x86-macos-13-${{ hashFiles('Makefile', 'CMakeLists.txt', 'libs/CMakeLists.txt') }}
- name: Build Debug Runtime
run: |
make configure arch=x86-64 config=debug
make configure lto=yes arch=x86-64 config=debug
make build config=debug
- name: Test with Debug Runtime
run: make test-ci config=debug usedebugger=lldb
- name: Build Release Runtime
run: |
make configure arch=x86-64 config=release
make configure lto=yes arch=x86-64 config=release
make build config=release
- name: Test with Release Runtime
run: make test-ci config=release usedebugger=lldb
Expand Down Expand Up @@ -135,13 +135,13 @@ jobs:
key: libs-x86-macos-12-${{ hashFiles('Makefile', 'CMakeLists.txt', 'libs/CMakeLists.txt') }}
- name: Build Debug Runtime
run: |
make configure arch=x86-64 config=debug
make configure lto=yes arch=x86-64 config=debug
make build config=debug
- name: Test with Debug Runtime
run: make test-ci config=debug
- name: Build Release Runtime
run: |
make configure arch=x86-64 config=release
make configure lto=yes arch=x86-64 config=release
make build config=release
- name: Test with Release Runtime
run: make test-ci config=release

0 comments on commit 5eac94e

Please sign in to comment.