Skip to content

Commit

Permalink
ci/build: remove obsolete for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
cspiel1 committed Apr 3, 2024
1 parent 8f8b3a0 commit 5b2d220
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,9 @@ jobs:

- name: make re
run: |
for p in re; do
cmake -S $p -B $p/build
cmake --build $p/build -j
done
for p in re; do
mv $p ../.
done
cmake -S re -B re/build
cmake --build re/build -j
mv re ../.
- name: ldconfig
if: ${{ runner.os == 'Linux' }}
Expand Down

0 comments on commit 5b2d220

Please sign in to comment.