Set trace-type
to rip
for bxcpu
& cov
for kvm
/winhv
if a …
#433
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Builds | |
on: [push, pull_request] | |
jobs: | |
Windows: | |
runs-on: windows-2019 | |
strategy: | |
fail-fast: false | |
matrix: | |
generator: ['ninja', 'msvc'] | |
name: Windows latest / ${{ matrix.generator }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Setup vs prompt | |
uses: ilammy/msvc-dev-cmd@v1 | |
- name: Build with Ninja/cl | |
if: matrix.generator == 'ninja' | |
run: | | |
cd src\build | |
.\build-release.bat | |
- name: Build with msvc | |
if: matrix.generator == 'msvc' | |
run: | | |
cd src\build | |
.\build-release-msvc.bat | |
- name: Copy dbghelp/symsrv | |
if: matrix.generator == 'ninja' | |
run: | | |
copy "c:\program Files (x86)\windows kits\10\debuggers\x64\dbghelp.dll" src/build | |
copy "c:\program Files (x86)\windows kits\10\debuggers\x64\dbgeng.dll" src/build | |
copy "c:\program Files (x86)\windows kits\10\debuggers\x64\dbgcore.dll" src/build | |
copy "c:\program Files (x86)\windows kits\10\debuggers\x64\symsrv.dll" src/build | |
- name: Upload artifacts | |
if: matrix.generator == 'ninja' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bin-win64.RelWithDebInfo | |
path: | | |
src/build/wtf.exe | |
src/build/wtf.pdb | |
src/build/dbghelp.dll | |
src/build/dbgeng.dll | |
src/build/dbgcore.dll | |
src/build/symsrv.dll | |
Linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: ['clang', 'gcc'] | |
name: Ubuntu latest / ${{ matrix.compiler }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Revert to the below when https://github.com/llvm/llvm-project/issues/84271 is fixed: | |
# sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" | |
- name: Installing dependencies | |
run: | | |
sudo apt-get -y update | |
sudo apt install -y g++-10 ninja-build | |
curl -O https://apt.llvm.org/llvm.sh | |
chmod u+x ./llvm.sh | |
sudo ./llvm.sh 17 | |
- name: Build with gcc | |
if: matrix.compiler == 'gcc' | |
env: | |
CC: gcc-10 | |
CXX: g++-10 | |
run: | | |
cd src/build | |
chmod u+x ./build-release.sh | |
./build-release.sh | |
# Revert to the below when https://github.com/llvm/llvm-project/issues/84271 is fixed: | |
# clang-18 / clang++-18 | |
- name: Build with clang | |
if: matrix.compiler == 'clang' | |
env: | |
CC: clang-17 | |
CXX: clang++-17 | |
run: | | |
cd src/build | |
chmod u+x ./build-release.sh | |
./build-release.sh | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bin-lin64-${{ matrix.compiler }}.Release | |
path: | | |
src/build/wtf |