Update to Tracy 0.11.1 #47
Workflow file for this run
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: Build | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
tags: ["v*"] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-2022, macos-15, ubuntu-22.04] | |
addrsize: ["64"] | |
## include: | |
## - os: windows-2022 | |
## addrsize: "32" | |
## continue-on-error: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup Homebrew Packages | |
if: ${{ runner.os == 'macOS' }} | |
shell: bash | |
run: brew install ninja | |
- name: Setup Apt Packages | |
if: ${{ runner.os == 'Linux' }} | |
shell: bash | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install ninja-build libdbus-1-dev libfreetype-dev libtbb-dev libwayland-dev wayland-protocols libxcursor-dev libxi-dev libxinerama-dev libxkbcommon-dev libxkbcommon-x11-dev libxrandr-dev libglvnd-dev libopengl-dev libgl-dev libegl-dev | |
- uses: secondlife/action-autobuild@v4 | |
with: | |
addrsize: ${{ matrix.addrsize }} | |
release: | |
needs: build | |
runs-on: [ubuntu-latest] | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: secondlife/action-autobuild-release@v3 | |
with: | |
public: true |