Skip to content
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d4e9c9c
clarifying usage of --build-require
memsharded Sep 10, 2025
d8c4c37
Merge branch 'main' into fix/improve_build_require
czoido Nov 5, 2025
359edd8
Merge branch 'main' into fix/improve_build_require
czoido Nov 6, 2025
8b6813b
Add Sanitizers examples (#192)
uilianries Nov 7, 2025
63e3384
[CI] Use GitHub Actions for CI (#200)
czoido Nov 12, 2025
6a51bc8
Install Bazel 7 on CI Workflow (#202)
uilianries Nov 13, 2025
18e598c
[infrastructure] Build only what you changed but run nightly build fo…
uilianries Nov 18, 2025
32d3379
[infrastructure] Run cross-building examples on CI (#206)
uilianries Nov 19, 2025
cc03384
[infrastructure] Fix Tensorflow CI build (#208)
uilianries Nov 26, 2025
b405271
[fix] Update URL for ARM toolchain download (#209)
uilianries Nov 26, 2025
be5bf9d
fix
czoido Dec 9, 2025
85e2d77
fix
czoido Dec 9, 2025
da1d1f3
[example] GameDev Raylib: Running on Android (#210)
uilianries Dec 10, 2025
88025b3
Fix CI to only run examples in directly affected directories (#214)
czoido Jan 19, 2026
5afd23a
Libtorch regression example (#213)
AbrilRBS Jan 22, 2026
97dac2a
reference license (#215)
czoido Jan 22, 2026
e05450e
remove imported but unused CMakeDeps
DGarry82 Jan 28, 2026
7207c0a
Add package signing plugin example using OpenSSL (#207)
danimtb Feb 26, 2026
f1efc43
Update conan install command for compiler settings
czoido Mar 3, 2026
8ded4f8
Add lockfile to libtorch example (#219)
danimtb Mar 3, 2026
a9ae9df
[CI] Avoid setup-python action populating the environment (#222)
danimtb Mar 6, 2026
a5dba02
Add package signing plugin example using Sigstore's cosign (#223)
danimtb Mar 31, 2026
89b0608
Merge branch 'main' into fix/improve_build_require
memsharded Aug 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
run('conan create .')

with chdir("consumer"):
cmd_out = run('conan create .')
cmd_out = run('conan create . --build-require')
assert re.search("Security Scanner: The path '.*' is secure!", cmd_out)
assert "MY_VAR=23" in cmd_out

Expand Down
Loading