diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-04 09:30:26 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-04 09:58:54 +0300 |
commit | 0282c2b54f79fa9063e03443369adfe1bc331eaf (patch) | |
tree | 58082f641f6eee449b4259d3f7d9d5323bfcfd34 /.github/workflows/boost_download.yml | |
parent | workflows/basic: tweak step names (diff) | |
download | cmake-common-0282c2b54f79fa9063e03443369adfe1bc331eaf.tar.gz cmake-common-0282c2b54f79fa9063e03443369adfe1bc331eaf.zip |
workflows: add run_foo.ps1, compact YAML
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/boost_download.yml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/.github/workflows/boost_download.yml b/.github/workflows/boost_download.yml index a718f60..0cd7f94 100644 --- a/.github/workflows/boost_download.yml +++ b/.github/workflows/boost_download.yml @@ -13,29 +13,22 @@ jobs: strategy: matrix: boost-version: [1.58.0, 1.72.0] - runs-on: ubuntu-20.04 - name: 'Download / ${{ matrix.boost-version }}' - defaults: run: shell: pwsh - steps: - name: Checkout uses: actions/checkout@v2 - - name: Set up Python uses: actions/setup-python@v2 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 |