diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/boost_toolsets.yml | 3 | ||||
-rw-r--r-- | .github/workflows/example_toolsets.yml | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/boost_toolsets.yml b/.github/workflows/boost_toolsets.yml index 07f3fb3..3259284 100644 --- a/.github/workflows/boost_toolsets.yml +++ b/.github/workflows/boost_toolsets.yml @@ -106,21 +106,18 @@ jobs: uses: egor-tensin/setup-gcc@v1 with: platform: '${{ matrix.platform }}' - hardlinks: 1 if: env.CI_HOST_LINUX && (matrix.toolset == 'auto' || matrix.toolset == 'gcc') - name: Install Clang uses: egor-tensin/setup-clang@v1 with: platform: '${{ matrix.platform }}' - hardlinks: 1 if: matrix.toolset == 'clang' || matrix.toolset == 'clang-cl' - name: Install MinGW uses: egor-tensin/setup-mingw@v2 with: platform: '${{ matrix.platform }}' - hardlinks: 1 # toolset == 'clang' needs some kind of make, e.g. mingw32-make: if: env.CI_MINGW || (matrix.toolset == 'clang' && env.CI_HOST_WINDOWS) diff --git a/.github/workflows/example_toolsets.yml b/.github/workflows/example_toolsets.yml index bb63376..b4f5fc7 100644 --- a/.github/workflows/example_toolsets.yml +++ b/.github/workflows/example_toolsets.yml @@ -82,21 +82,18 @@ jobs: uses: egor-tensin/setup-gcc@v1 with: platform: '${{ matrix.platform }}' - hardlinks: 1 if: env.CI_HOST_LINUX && (matrix.toolset == 'auto' || matrix.toolset == 'gcc') - name: Install Clang uses: egor-tensin/setup-clang@v1 with: platform: '${{ matrix.platform }}' - hardlinks: 1 if: matrix.toolset == 'clang' || matrix.toolset == 'clang-cl' - name: Install MinGW uses: egor-tensin/setup-mingw@v2 with: platform: '${{ matrix.platform }}' - hardlinks: 1 # toolset == 'clang' needs some kind of make, e.g. mingw32-make: if: env.CI_MINGW || (matrix.toolset == 'clang' && env.CI_HOST_WINDOWS) |