Build nomos-node without locked lockfile in CI

This commit is contained in:
andrussal 2025-12-02 05:12:47 +01:00
parent 491df5ee4f
commit ce50c0d5f9
2 changed files with 3 additions and 3 deletions

View File

@ -179,7 +179,7 @@ jobs:
git checkout 2f60a0372c228968c3526c341ebc7e58bbd178dd git checkout 2f60a0372c228968c3526c341ebc7e58bbd178dd
git reset --hard git reset --hard
git clean -fdx git clean -fdx
cargo +nightly-2025-09-14 build --locked --all-features -p nomos-node -p nomos-executor cargo +nightly-2025-09-14 build --all-features -p nomos-node -p nomos-executor
- name: Run local runner smoke (ignored test) - name: Run local runner smoke (ignored test)
run: | run: |
cargo +nightly-2025-09-14 test -p runner-examples --test local_runner_bin_smoke -- --ignored --nocapture cargo +nightly-2025-09-14 test -p runner-examples --test local_runner_bin_smoke -- --ignored --nocapture

View File

@ -84,11 +84,11 @@ RUN if [ ! -d /workspace/nomos-node ]; then \
git fetch --depth 1 origin 2f60a0372c228968c3526c341ebc7e58bbd178dd && \ git fetch --depth 1 origin 2f60a0372c228968c3526c341ebc7e58bbd178dd && \
git checkout 2f60a0372c228968c3526c341ebc7e58bbd178dd && \ git checkout 2f60a0372c228968c3526c341ebc7e58bbd178dd && \
git reset --hard && git clean -fdx && \ git reset --hard && git clean -fdx && \
cargo build --locked --all-features --bins && \ cargo build --all-features --bins && \
rm -rf /workspace/nomos-node/target/debug/incremental rm -rf /workspace/nomos-node/target/debug/incremental
# Build cfgsync binaries from this workspace. # Build cfgsync binaries from this workspace.
RUN cargo build --locked --all-features --manifest-path /workspace/testing-framework/tools/cfgsync/Cargo.toml --bins RUN cargo build --all-features --manifest-path /workspace/testing-framework/tools/cfgsync/Cargo.toml --bins
# =========================== # ===========================
# NODE IMAGE # NODE IMAGE