File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -711,10 +711,10 @@ jobs:
711711 - name : Clippy & Test
712712 run : |
713713 PGRX_PG_CONFIG_PATH=pg_config \
714- cargo clippy --locked -- target ${{ matrix.rust_triple }} \
714+ cargo clippy --target ${{ matrix.rust_triple }} \
715715 --workspace --features pg${{ matrix.version }}
716716 PGRX_PG_CONFIG_PATH=pg_config \
717- cargo test --locked -- target ${{ matrix.rust_triple }} \
717+ cargo test --target ${{ matrix.rust_triple }} \
718718 --workspace --exclude vchord --no-fail-fast \
719719 -- --no-capture
720720
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ fn build(
168168) -> Result < PathBuf , Box < dyn Error > > {
169169 let mut command = Command :: new ( "cargo" ) ;
170170 command
171- . args ( [ "build" , "--locked" ] )
171+ . args ( [ "build" ] )
172172 . args ( [ "-p" , "vchord" , "--lib" ] )
173173 . args ( [ "--profile" , profile] )
174174 . args ( [ "--target" , target] )
@@ -266,7 +266,7 @@ fn generate(
266266 ) ?;
267267 let mut command = Command :: new ( "cargo" ) ;
268268 command
269- . args ( [ "rustc" , "--locked" ] )
269+ . args ( [ "rustc" ] )
270270 . args ( [ "-p" , "vchord" , "--bin" , "pgrx_embed_vchord" ] )
271271 . args ( [ "--profile" , profile] )
272272 . args ( [ "--target" , target] )
You can’t perform that action at this time.
0 commit comments