uses run-vcpkg@v11 #96
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
# Copyright (c) 2020-2021-2022 Luca Cappa | |
# Released under the term specified in file LICENSE.txt | |
# SPDX short identifier: MIT | |
# | |
name: get-cmake-self-hosted-runner-test | |
on: [push, workflow_dispatch] | |
jobs: | |
job: | |
name: ${{ matrix.os }}-${{ github.workflow }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
include: | |
- os: windows-latest | |
vcpkgCommitId: 'a42af01b72c28a8e1d7b48107b33e4f286a55ef6' | |
- os: ubuntu-latest | |
vcpkgCommitId: 'a42af01b72c28a8e1d7b48107b33e4f286a55ef6' | |
- os: macos-latest | |
vcpkgCommitId: 'a42af01b72c28a8e1d7b48107b33e4f286a55ef6' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: lukka/get-cmake@latest | |
with: | |
useLocalCache: true | |
useCloudCache: false | |
- name: Dump the content of $RUNNER_TEMP | |
run: find $RUNNER_TEMP | |
shell: bash | |
- name: Dump the content of $RUNNER_WORKSPACE | |
run: find $RUNNER_WORKSPACE | |
shell: bash | |
- uses: lukka/get-cmake@latest | |
with: | |
useLocalCache: true | |
useCloudCache: false | |
- name: Dump the content of $RUNNER_TEMP | |
run: find $RUNNER_TEMP | |
shell: bash | |
- name: Dump the content of $RUNNER_WORKSPACE | |
run: find $RUNNER_WORKSPACE | |
shell: bash |