blob: f14561ab8c45289b309e8e6b0de6fa2af8b23cfd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
name: Boost (download)
on:
push:
paths:
- 'project/**'
pull_request:
schedule:
# Weekly, at 5:30 AM on Saturday (somewhat randomly chosen).
- cron: '30 5 * * 6'
workflow_dispatch:
jobs:
build:
strategy:
matrix:
boost-version: [1.58.0, 1.68.0, 1.78.0]
runs-on: ubuntu-latest
name: 'Download: ${{ matrix.boost-version }}'
defaults:
run:
shell: pwsh
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Download Boost
uses: ./.github/actions/download-boost
with:
boost-version: '${{ matrix.boost-version }}'
no-retry: 1
- name: Check that Boost was downloaded
uses: ./.github/actions/check-boost-download
|