aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.github/workflows/boost_download.yml
blob: f14561ab8c45289b309e8e6b0de6fa2af8b23cfd (plain) (tree)
1
2
3
4
5
6



                      

                    









                                                                
                                               
                          
                                                 


                   

                      
                                 
                           


                                     



                                                      
                     

                                                    
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