Skip to content

Commit

Permalink
Update depinst.py usage to scan more directories.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzmaddock committed Nov 6, 2023
1 parent 90c5093 commit c33ea10
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: cp -r $GITHUB_WORKSPACE/* libs/math
working-directory: ../boost-root
- name: Install deps
run: python tools/boostdep/depinst/depinst.py math
run: python tools/boostdep/depinst/depinst.py math -I libs/math/example -I libs/math/tools
working-directory: ../boost-root
- name: Bootstrap
run: ./bootstrap.sh
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
run: cp -r $GITHUB_WORKSPACE/* libs/math
working-directory: ../boost-root
- name: Install deps
run: python tools/boostdep/depinst/depinst.py math
run: python tools/boostdep/depinst/depinst.py math -I libs/math/example -I libs/math/tools
working-directory: ../boost-root
- name: Bootstrap
run: ./bootstrap.sh
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
run: cp -r $GITHUB_WORKSPACE/* libs/math
working-directory: ../boost-root
- name: Install deps
run: python tools/boostdep/depinst/depinst.py math
run: python tools/boostdep/depinst/depinst.py math -I libs/math/example -I libs/math/tools
working-directory: ../boost-root
- name: Bootstrap
run: ./bootstrap.sh
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\math
working-directory: ../boost-root
- name: Install deps
run: python tools/boostdep/depinst/depinst.py math
run: python tools/boostdep/depinst/depinst.py math -I libs/math/example -I libs/math/tools
working-directory: ../boost-root
- name: Bootstrap
run: bootstrap
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\math
working-directory: ../boost-root
- name: Install deps
run: python tools/boostdep/depinst/depinst.py math
run: python tools/boostdep/depinst/depinst.py math -I libs/math/example -I libs/math/tools
working-directory: ../boost-root
- name: Bootstrap
run: bootstrap
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\math
working-directory: ../boost-root
- name: Install deps
run: python tools/boostdep/depinst/depinst.py math
run: python tools/boostdep/depinst/depinst.py math -I libs/math/example -I libs/math/tools
working-directory: ../boost-root
- name: Bootstrap
run: bootstrap
Expand Down Expand Up @@ -336,7 +336,7 @@ jobs:
- name: Copy files
run: C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE") && cp -r * ../boost-root/libs/math'
- name: Install deps
run: C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE")/../boost-root && python tools/boostdep/depinst/depinst.py math'
run: C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE")/../boost-root && python tools/boostdep/depinst/depinst.py math -I libs/math/example -I libs/math/tools'
- name: Bootstrap
run: C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE")/../boost-root && ./bootstrap.sh'
- name: Generate headers
Expand Down Expand Up @@ -466,7 +466,7 @@ jobs:
run: cp -r $GITHUB_WORKSPACE/* libs/math
working-directory: ../boost-root
- name: Install deps
run: python tools/boostdep/depinst/depinst.py math
run: python tools/boostdep/depinst/depinst.py math -I libs/math/example -I libs/math/tools
working-directory: ../boost-root
- name: Bootstrap
run: ./bootstrap.sh
Expand Down

2 comments on commit c33ea10

@pdimov
Copy link
Member

@pdimov pdimov commented on c33ea10 Nov 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, just example and tools. They are implied to be subdirectories of the library directory (libs/math, where math is the argument).

@jzmaddock
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, figured that out by reading the source ;)

Thanks for this though, looking much better now!

Please sign in to comment.