Skip to content

Commit

Permalink
Revert "CI: remove editables"
Browse files Browse the repository at this point in the history
This reverts commit 051212b.
  • Loading branch information
sguionni committed Nov 7, 2023
1 parent 051212b commit 1d4c9a1
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cmake_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ jobs:
- name: Create default profile
run: conan profile detect --force

- name: Configure packages
working-directory: ${{env.CMAKELISTS_DIR}}
run: |
conan editable add .
conan editable add ${{github.workspace}}/lib/util
conan editable add ${{github.workspace}}/lib/renderer
conan editable add ${{github.workspace}}/lib/io
conan editable add ${{github.workspace}}/lib/io/chemfiles
conan editable add ${{github.workspace}}/lib/core
- name: Build
working-directory: ${{env.CMAKELISTS_DIR}}
run: conan build test --build=missing --build=editable --settings=compiler.cppstd=20
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/cmake_core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:

- name: Create default profile
run: conan profile detect --force

- name: Configure packages
working-directory: ${{env.CMAKELISTS_DIR}}
run: |
conan editable add .
conan editable add ${{github.workspace}}/lib/util
- name: Build
working-directory: ${{env.CMAKELISTS_DIR}}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/cmake_io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
- name: Create default profile
run: conan profile detect --force

- name: Configure packages
working-directory: ${{env.CMAKELISTS_DIR}}
run: |
conan editable add .
conan editable add chemfiles
conan editable add ${{github.workspace}}/lib/util
conan editable add ${{github.workspace}}/lib/core
- name: Build
working-directory: ${{env.CMAKELISTS_DIR}}
run: conan build test --build=missing --build=editable --settings=compiler.cppstd=20
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/cmake_renderer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ jobs:

- name: Create default profile
run: conan profile detect --force

- name: Configure packages
working-directory: ${{env.CMAKELISTS_DIR}}
run: |
conan editable add .
conan editable add ${{github.workspace}}/lib/util
conan editable add ${{github.workspace}}/lib/io
conan editable add ${{github.workspace}}/lib/io/chemfiles
conan editable add ${{github.workspace}}/lib/core
- name: Build
working-directory: ${{env.CMAKELISTS_DIR}}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/cmake_util.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:

- name: Create default profile
run: conan profile detect --force

- name: Configure packages
working-directory: ${{env.CMAKELISTS_DIR}}
run: conan editable add .

- name: Build
working-directory: ${{env.CMAKELISTS_DIR}}
Expand Down

0 comments on commit 1d4c9a1

Please sign in to comment.