Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Jan 5, 2024
1 parent 755ab59 commit ea4b8f1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,24 @@ jobs:
run: |
wget --no-check-certificate 'https://archives.boost.io/release/1.84.0/source/boost_1_84_0.tar.gz'
tar xf boost_1_84_0.tar.gz
pwd
- name: Check boost
id: check-boost
run: |
pwd
echo "${{runner.workspace}}"
echo {$GITHUB_WORKSPACE}
echo ${BENCHMARK_INSTALL_DIR}
echo {$GITHUB_WORKSPACE}/boost_1_84_0
ls -l
cd boost_1_84_0
ls -l
- name: Configure CMake
run: cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_BENCHMARKING:BOOL=TRUE -DCMAKE_PREFIX_PATH="${BENCHMARK_INSTALL_DIR};{$GITHUB_WORKSPACE}/boost_1_84_0" -S $GITHUB_WORKSPACE -B {$GITHUB_WORKSPACE}/build
run: |
pwd
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_BENCHMARKING:BOOL=TRUE -DCMAKE_PREFIX_PATH="${BENCHMARK_INSTALL_DIR};{$GITHUB_WORKSPACE}/boost_1_84_0" -S $GITHUB_WORKSPACE -B {$GITHUB_WORKSPACE}/build
- name: Build Loki
working-directory: ${{runner.workspace}}/build
Expand Down

0 comments on commit ea4b8f1

Please sign in to comment.