Skip to content

Merge pull request #1342 from feltech/work/1324-stubCppPlugin #12

Merge pull request #1342 from feltech/work/1324-stubCppPlugin

Merge pull request #1342 from feltech/work/1324-stubCppPlugin #12

# A dummy workflow that populates the runner with dependencies
# and pops them in the actions cache, so we know there is
# always a fallback for subsequent PRs
#
name: Populate Runner Cache
on:
push:
branches:
- main
- feature/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cache:
name: ${{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
# config.os vs os to match requirements of bootstrap_platform
config:
- os: ubuntu-20.04
- os: macos-12
- os: windows-2019
steps:
- uses: actions/checkout@v4
- name: Bootstrap
uses: ./.github/bootstrap_platform