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 9ae6512 commit f772767
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ jobs:
cmake --build build
cmake --install build
- name: Install boost
- name: Download and extract boost
id: install-boost
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
echo "BOOST_ROOT=${{runner.workspace}}/boost_1_84_0" >> "$GITHUB_ENV"
echo "${{runner.workspace}}/boost_1_84_0"
- name: Check boost
id: check-boost
run: echo ${{ steps.install-boost.outputs.BOOST_ROOT }}
run: |
echo ${{ steps.install-boost.outputs.BOOST_ROOT }}
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};${{runner.workspace}}/boost_1_84_0" -S $GITHUB_WORKSPACE -B ${{runner.workspace}}/build
#env:
# BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}

- name: Build Loki
working-directory: ${{runner.workspace}}/build
Expand Down

0 comments on commit f772767

Please sign in to comment.