From 596dbc3aeed2b110f94c99b6168fc464cb03ec6b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 13 Apr 2021 19:40:47 +0300 Subject: project.ci: add --hint parameter This is a stupid workaround for testing other CI systems on GitHub Actions. --- .github/workflows/ci_appveyor.yml | 4 ++-- .github/workflows/ci_travis.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci_appveyor.yml b/.github/workflows/ci_appveyor.yml index c9d34a1..80248d0 100644 --- a/.github/workflows/ci_appveyor.yml +++ b/.github/workflows/ci_appveyor.yml @@ -51,10 +51,10 @@ jobs: key: 'boost-${{ env.boost_version }}' - name: Build Boost - run: python -m project.ci.boost -- --with-filesystem + run: python -m project.ci.boost --hint AppVeyor -- --with-filesystem - name: Build example project - run: python -m project.ci.cmake --install + run: python -m project.ci.cmake --hint AppVeyor --install - name: Run example project run: | diff --git a/.github/workflows/ci_travis.yml b/.github/workflows/ci_travis.yml index d3e8bf3..3dc1da5 100644 --- a/.github/workflows/ci_travis.yml +++ b/.github/workflows/ci_travis.yml @@ -49,10 +49,10 @@ jobs: key: 'boost-${{ env.boost_version }}' - name: Build Boost - run: python -m project.ci.boost -- --with-filesystem + run: python -m project.ci.boost --hint Travis -- --with-filesystem - name: Build example project - run: python -m project.ci.cmake --install + run: python -m project.ci.cmake --hint Travis --install - name: Run example project run: | -- cgit v1.2.3