@@ -137,28 +137,28 @@ jobs:
137137 uses : actions/checkout@v4
138138
139139 - name : Clippy
140- run : cargo clippy --workspace --exclude vchord
140+ run : cargo clippy --locked -- workspace --exclude vchord
141141
142142 - name : Cargo Test
143- run : cargo test --workspace --exclude vchord --exclude simd --no-fail-fast
143+ run : cargo test --locked -- workspace --exclude vchord --exclude simd --no-fail-fast
144144
145145 - name : Cargo Test (simd)
146146 run : |
147147 if [ "$(uname -m)" == "x86_64" ]; then
148148 cargo \
149149 --config 'target.'\''cfg(all())'\''.runner = ["/opt/sde/sde64", "-spr", "--"]' \
150- test -p simd -- --no-capture
150+ test --locked - p simd -- --no-capture
151151 fi
152152 if [ "$(uname -m)" == "aarch64" ]; then
153153 cargo \
154154 --config 'target.'\''cfg(all())'\''.runner = ["qemu-aarch64-static", "-cpu", "max,sve-default-vector-length=16"]' \
155- test -p simd -- --no-capture
155+ test --locked - p simd -- --no-capture
156156 cargo \
157157 --config 'target.'\''cfg(all())'\''.runner = ["qemu-aarch64-static", "-cpu", "max,sve-default-vector-length=32"]' \
158- test -p simd -- --no-capture
158+ test --locked - p simd -- --no-capture
159159 cargo \
160160 --config 'target.'\''cfg(all())'\''.runner = ["qemu-aarch64-static", "-cpu", "max,sve-default-vector-length=64"]' \
161- test -p simd -- --no-capture
161+ test --locked - p simd -- --no-capture
162162 fi
163163
164164 psql :
@@ -218,7 +218,7 @@ jobs:
218218 uses : actions/checkout@v4
219219
220220 - name : Clippy
221- run : cargo clippy --target ${{ matrix.arch }}-unknown-linux-gnu -p vchord --features pg${{ matrix.version }} --no-deps
221+ run : cargo clippy --locked -- target ${{ matrix.arch }}-unknown-linux-gnu -p vchord --features pg${{ matrix.version }} --no-deps
222222
223223 - name : Install
224224 run : |
@@ -301,7 +301,7 @@ jobs:
301301
302302 - name : Clippy
303303 run : |
304- cargo clippy -p vchord --target ${{ matrix.arch }}-apple-darwin --features pg${{ matrix.version }} --no-deps
304+ cargo clippy --locked - p vchord --target ${{ matrix.arch }}-apple-darwin --features pg${{ matrix.version }} --no-deps
305305
306306 - name : Install
307307 run : |
@@ -407,7 +407,7 @@ jobs:
407407
408408 - name : Clippy
409409 run : |
410- cargo clippy --target ${{ matrix.arch }}-pc-windows-msvc -p vchord --features pg${{ matrix.version }} --no-deps
410+ cargo clippy --locked -- target ${{ matrix.arch }}-pc-windows-msvc -p vchord --features pg${{ matrix.version }} --no-deps
411411
412412 - name : Install
413413 run : |
@@ -514,7 +514,7 @@ jobs:
514514 - name : Clippy
515515 run : |
516516 . "$HOME/.cargo/env"
517- cargo clippy --target ${{ matrix.arch }}-unknown-linux-musl -p vchord --features pg${{ matrix.version }} --no-deps
517+ cargo clippy --locked -- target ${{ matrix.arch }}-unknown-linux-musl -p vchord --features pg${{ matrix.version }} --no-deps
518518
519519 - name : Install
520520 run : |
@@ -711,10 +711,10 @@ jobs:
711711 - name : Clippy & Test
712712 run : |
713713 PGRX_PG_CONFIG_PATH=pg_config \
714- cargo clippy --target ${{ matrix.rust_triple }} \
714+ cargo clippy --locked -- target ${{ matrix.rust_triple }} \
715715 --workspace --features pg${{ matrix.version }}
716716 PGRX_PG_CONFIG_PATH=pg_config \
717- cargo test --target ${{ matrix.rust_triple }} \
717+ cargo test --locked -- target ${{ matrix.rust_triple }} \
718718 --workspace --exclude vchord --no-fail-fast \
719719 -- --no-capture
720720
0 commit comments