Skip to content

Commit

Permalink
set DCMAKE_TOOLCHAIN_FILE to none in extraction
Browse files Browse the repository at this point in the history
currently, it instantly fails as that path does not exist.
  • Loading branch information
surepy authored Mar 25, 2023
1 parent 011ac8f commit 68d316c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: |
mkdir build_dir
cd build_dir
cmake ../ || true # we know this will fail, we just need version info from CMakeCache.txt
cmake -DCMAKE_TOOLCHAIN_FILE="" ../ || true # we know this will fail, we just need version info from CMakeCache.txt
TF2BD_VERSION_NOBUILD=`cat CMakeCache.txt | grep TF2BD_VERSION_NOBUILD: | cut -d "=" -f2`
echo "::set-output name=value::$TF2BD_VERSION_NOBUILD.${{ github.run_number }}"
Expand Down Expand Up @@ -172,4 +172,4 @@ jobs:
with:
name: "tf2-bot-detector-symbols_${{ matrix.triplet }}_${{ needs.config.outputs.tf2bd_version }}_${{ matrix.build_type }}"
if-no-files-found: error
path: "${{ needs.config.outputs.tf2bd_build_dir }}/**.pdb"
path: "${{ needs.config.outputs.tf2bd_build_dir }}/**.pdb"

0 comments on commit 68d316c

Please sign in to comment.