Skip to content

Commit b3dbc2c

Browse files
committed
Fix syntax
1 parent cd05c09 commit b3dbc2c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/cmake.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
run: |
8282
brew update
8383
brew install libtiff open-mpi libyaml ccache conan
84-
echo "{CMAKE_PREFIX_PATH}={/usr/local/opt/libomp}" >> $GITHUB_ENV
84+
echo "CMAKE_PREFIX_PATH=/usr/local/opt/libomp" >> $GITHUB_ENV
8585
8686
- name: Prepare ccache timestamp
8787
id: ccache_cache_timestamp
@@ -114,7 +114,9 @@ jobs:
114114
- name: Build
115115
# Build your program with the given configuration.
116116
# The Github Actions machines are dual-core so we can build faster using 2 parallel processes
117-
run: conan build ${{github.workspace}} -bf ${{github.workspace}}/build
117+
run: |
118+
echo ${{env.CMAKE_PREFIX_PATH}}
119+
conan build ${{github.workspace}} -bf ${{github.workspace}}/build
118120
119121
- name: Test
120122
working-directory: ${{github.workspace}}/build

0 commit comments

Comments
 (0)