We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4f974 commit bc7e6f0Copy full SHA for bc7e6f0
.github/workflows/rebuildDependencies.yml
@@ -232,16 +232,22 @@ jobs:
232
$CONAN_PROFILES \
233
${{ matrix.conan_options }} \
234
--format=json \
235
- --build=never \
+ --build="*" \
236
--no-remote \
237
- --conf:all="tools.graph:skip_binaries=False" \
238
> "$graphFile"
239
conan list \
240
--graph "$graphFile" \
241
--graph-context=build-only \
242
243
> "$packageListFile"
244
conan remove --list "$packageListFile" --confirm
+ - name: Upload JSON graphs
245
+ uses: actions/upload-artifact@v4
246
+ with:
247
+ name: JSON graphs ${{ matrix.platform }}
248
+ path: |
249
+ graph.json
250
+ pkglist.json
251
252
- name: Create list of built packages
253
run: |
0 commit comments