Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/cpp-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,6 @@ jobs:
echo " HEAD_REPO=$HEAD_REPO"
echo " HEAD_REF=$HEAD_REF"

# - name: Setup build host
# uses: tetherto/qvac/.github/actions/setup-build-host@df55c85d7b8004961e430557e85b6ec1b15cf170
# with:
# platform: linux
# arch: x64

# - name: Setup LLVM
# uses: tetherto/qvac/.github/actions/setup-llvm@0c819dd1110e4902223b1f7646cc0f1be2c9bc5c
- name: Manual Workspace Cleanup
run: rm -rf "$GITHUB_WORKSPACE" && mkdir -p "$GITHUB_WORKSPACE"
shell: bash
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/cpp-tests-classification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ jobs:
WORKDIR: ${{ inputs.workdir }}

steps:
- name: Setup build host
- name: Setup build host (github-hosted runners only)
if: runner.environment == 'github-hosted'
uses: tetherto/qvac/.github/actions/setup-build-host@1d9b2165867d03c6edd675e402ee101a5d48a6d8
with:
platform: ${{ matrix.platform }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/reusable-prebuilds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,16 +168,17 @@ jobs:
echo "Matrix tags: $MATRIX_TAGS"

- name: Setup build host (Linux arm and macOS)
if: matrix.arch == 'arm64' || matrix.os == 'macos-15' || matrix.os == 'macos-15-intel'
if: runner.environment == 'github-hosted'
uses: tetherto/qvac/.github/actions/setup-build-host@df55c85d7b8004961e430557e85b6ec1b15cf170
with:
platform: ${{ matrix.platform }}
arch: ${{ matrix.arch }}
linux-extra-packages: ${{ inputs.linux-extra-packages }}

- name: Setup LLVM (Linux arm and macOS)
if: matrix.arch == 'arm64' || matrix.os == 'macos-15' || matrix.os == 'macos-15-intel'
if: runner.environment == 'github-hosted'
uses: tetherto/qvac/.github/actions/setup-llvm@0c819dd1110e4902223b1f7646cc0f1be2c9bc5c

- name: Manual Workspace Cleanup
run: rm -rf "$GITHUB_WORKSPACE" && mkdir -p "$GITHUB_WORKSPACE"
shell: bash
Expand Down
Loading