Skip to content

Commit

Permalink
update workflow check ofr external hipo
Browse files Browse the repository at this point in the history
  • Loading branch information
dglazier committed Feb 5, 2024
1 parent 51f3b82 commit 4ba8b21
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
echo "PATH=$PWD/bin:$CCDB_HOME:$CCDB_HOME/bin:$RCDB_HOME/bin:$RCDB_HOME/cpp/bin:$PATH" >> $GITHUB_ENV
echo "LD_LIBRARY_PATH=$RCDB_HOME/cpp/lib:$CCDB_HOME/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Create folder
- name: Create hipo folder
run: |
mkdir -p $HIPO
Expand All @@ -45,13 +45,13 @@ jobs:
with:
repository: gavalian/hipo
ref: 4.0.1 # if you want to use a fixed tag; remove if you want to use `main`
path: ${HIPO}
path: hipo_src

- name: build hipo
run: |
cmake -S $HIPO/hipo -B $HIPO/hipo --install-prefix $HIPO/hipo
cmake --build $HIPO/hipo
cmake --install $HIPO/hipo
cmake -S hipo_src -B hipo_build --install-prefix $HIPO
cmake --build hipo_build
cmake --install hipo_build
- name: build ccdb
run: |
Expand Down

0 comments on commit 4ba8b21

Please sign in to comment.