File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -56,14 +56,17 @@ jobs:
5656 install : mingw-w64-clang-x86_64-clang make git expect
5757
5858 - name : Download SDE package
59- if : runner.os == 'Linux ' || runner.os == 'Windows'
59+ if : " !(matrix.arch == '-bmi2 ' || matrix.arch == '-avx2' || matrix.arch == '-sse41-popcnt') "
6060 uses : petarpetrovt/setup-sde@v2.4
6161 with :
6262 environmentVariableName : SDE_DIR
6363 sdeVersion : 9.33.0
6464
6565 - name : Compile ${{ matrix.arch }} build
6666 run : |
67+ if [[ "${{ matrix.arch }}" == "-bmi2" || "${{ matrix.arch }}" == "-avx2" || "${{ matrix.arch }}" == "-sse41-popcnt" ]]; then
68+ SDE=""
69+ fi
6770 make -j profile-build EXE=$EXE WINE_PATH="$SDE"
6871 make strip EXE=$EXE
6972 cp $EXE ../
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ PREFIX = /usr/local
4949BINDIR = $(PREFIX ) /bin
5050
5151# ## Built-in benchmark for pgo-builds
52- PGOBENCH = $(WINE_PATH ) ./$(EXE ) bench
52+ PGOBENCH = printf "speedtest\nbench\n" | $(WINE_PATH ) ./$(EXE )
5353
5454# ## Source and object files
5555SRCS = $(shell find . -name '* .cpp') $(shell find . -name '* .S')
You can’t perform that action at this time.
0 commit comments