Skip to content

Commit

Permalink
Update CPU targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Jul 28, 2022
1 parent 1bcf601 commit f0d4135
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,28 @@ jobs:
include:
- runner: macos-11
lto_flag: -flto='full'
cpu: native
cpu: haswell
label: bun-webkit-macos-amd64-lto
brew_prefix: /usr/local/opt
march: "-march=native"
march: "-march=haswell"
- runner: macos-11
lto_flag: -flto='full'
cpu: sandybridge
cpu: westmere
label: bun-webkit-macos-amd64-lto-baseline
brew_prefix: /usr/local/opt
march: "-march=sandybridge"
march: "-march=westmere"
- runner: macos-11
lto_flag: ""
cpu: sandybridge
cpu: westmere
label: bun-webkit-macos-amd64-baseline
brew_prefix: /usr/local/opt
march: "-march=sandybridge"
march: "-march=westmere"
- runner: macos-11
lto_flag: ""
cpu: native
cpu: haswell
label: bun-webkit-macos-amd64
brew_prefix: /usr/local/opt
march: "-march=native"
march: "-march=haswell"
- runner: macOS-arm64
lto_flag: -flto='full'
cpu: native
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04]
cpu: [native, sandybridge]
cpu: [native, westmere]

steps:
- uses: actions/checkout@v3
Expand All @@ -136,7 +136,7 @@ jobs:
name: bun-webkit-linux-amd64
path: ${{runner.temp}}/bun-webkit.tar.gz
- uses: actions/upload-artifact@v3
if: ${{ matrix.cpu == 'sandybridge' }}
if: ${{ matrix.cpu == 'westmere' }}
with:
name: bun-webkit-linux-amd64-baseline
path: ${{runner.temp}}/bun-webkit.tar.gz
Expand Down

0 comments on commit f0d4135

Please sign in to comment.