This repository was archived by the owner on Oct 23, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,16 +96,16 @@ jobs:
96
96
97
97
- name : Build
98
98
if : matrix.platform.cross == false
99
- run : cargo build --workspace --tests --examples
99
+ run : cargo build --locked -- workspace --tests --examples
100
100
101
101
- name : Build android
102
102
if : contains(matrix.platform.target, 'android')
103
- run : cargo ndk --android-platform 29 --target ${{ matrix.platform.target }} build --workspace --exclude ipfs-http
103
+ run : cargo ndk --android-platform 29 --target ${{ matrix.platform.target }} build --locked -- workspace --exclude ipfs-http
104
104
# exclude http on android because openssl
105
105
106
106
- name : Build other cross compilations
107
107
if : contains(matrix.platform.target, 'android') == false && matrix.platform.cross == true
108
- run : cargo build --workspace --exclude ipfs-http --target ${{ matrix.platform.target }}
108
+ run : cargo build --locked -- workspace --exclude ipfs-http --target ${{ matrix.platform.target }}
109
109
# exclude http on other cross compilation targets because openssl
110
110
111
111
- name : Rust tests
You can’t perform that action at this time.
0 commit comments