mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-20 10:09:49 +00:00
Set contents: read permissions on every workflow and add per-workflow concurrency groups keyed on the git ref to deduplicate concurrent runs. Release workflow keeps cancel-in-progress: false so a release build is never canceled; job-level contents: write on attach-to-release is preserved. Concurrency groups use hardcoded prefixes so reusable workflows called from release.yml do not inherit the caller workflow name and collide.
75 lines
2.5 KiB
YAML
75 lines
2.5 KiB
YAML
name: linux-cli
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: linux-cli-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm-cache
|
|
|
|
jobs:
|
|
build-linux-cli:
|
|
runs-on: ubuntu-latest
|
|
container: ubuntu:24.04
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
apt-get update
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
build-essential cmake git ca-certificates curl nodejs
|
|
- name: Trust git repo
|
|
run: git config --global --add safe.directory '*'
|
|
- uses: actions/checkout@v4
|
|
- name: Cache CPM packages
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ${{ env.CPM_SOURCE_CACHE }}
|
|
key: ${{ runner.os }}-cpm-${{ hashFiles('**/vendor.cmake', '**/CMakeLists.txt') }}
|
|
restore-keys: ${{ runner.os }}-cpm-
|
|
- name: Build update
|
|
run: |
|
|
cmake -B update/build -S update -DCMAKE_BUILD_TYPE=Release -DNO_ISA_EXTENSIONS=ON -DGIT_REV=${{ github.sha }}
|
|
cmake --build update/build --parallel
|
|
- name: Build capture
|
|
run: |
|
|
cmake -B capture/build -S capture -DCMAKE_BUILD_TYPE=Release -DNO_ISA_EXTENSIONS=ON -DGIT_REV=${{ github.sha }}
|
|
cmake --build capture/build --parallel
|
|
- name: Build csvexport
|
|
run: |
|
|
cmake -B csvexport/build -S csvexport -DCMAKE_BUILD_TYPE=Release -DNO_ISA_EXTENSIONS=ON -DGIT_REV=${{ github.sha }}
|
|
cmake --build csvexport/build --parallel
|
|
- name: Build import
|
|
run: |
|
|
cmake -B import/build -S import -DCMAKE_BUILD_TYPE=Release -DNO_ISA_EXTENSIONS=ON -DGIT_REV=${{ github.sha }}
|
|
cmake --build import/build --parallel
|
|
- name: Build merge
|
|
run: |
|
|
cmake -B merge/build -S merge -DCMAKE_BUILD_TYPE=Release -DNO_ISA_EXTENSIONS=ON -DGIT_REV=${{ github.sha }}
|
|
cmake --build merge/build --parallel
|
|
- name: Stage release files
|
|
run: |
|
|
mkdir -p linux-cli
|
|
cp update/build/tracy-update linux-cli/
|
|
cp capture/build/tracy-capture linux-cli/
|
|
cp capture/build/tracy-capture-daemon linux-cli/
|
|
cp csvexport/build/tracy-csvexport linux-cli/
|
|
cp import/build/tracy-import-chrome linux-cli/
|
|
cp import/build/tracy-import-fuchsia linux-cli/
|
|
cp merge/build/tracy-merge linux-cli/
|
|
strip linux-cli/tracy-*
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: linux-cli
|
|
path: linux-cli
|