Skip to content

Commit 9e9035e

Browse files
committed
typo fix, add rust env activation
1 parent 010f682 commit 9e9035e

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/ci.yml

+19-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- name: Install Rust toolchain
1919
run:
2020
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
21+
source .cargo/env
2122
- name: Download Verus
2223
uses: actions/checkout@v2
2324
with:
@@ -44,20 +45,22 @@ jobs:
4445
- name: Install Rust toolchain
4546
run: |
4647
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
48+
source .cargo/env
4749
- name: Restore build cache
4850
uses: actions/cache@v4
4951
with:
5052
path: |
5153
verus
5254
key: verus-${{ hashFiles('source/Cargo.lock') }}
53-
- name: Verify fluent controllerc
55+
- name: Verify fluent controller
5456
run: VERUS_DIR="$(dirname "${PWD}")/verus" ./build.sh fluent_controller.rs --time --rlimit 50
5557
rabbitmq-verification:
5658
runs-on: ubuntu-22.04
5759
steps:
5860
- name: Install Rust toolchain
5961
run: |
6062
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
63+
source .cargo/env
6164
- name: Restore build cache
6265
uses: actions/cache@v4
6366
with:
@@ -72,6 +75,7 @@ jobs:
7275
- name: Install Rust toolchain
7376
run: |
7477
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
78+
source .cargo/env
7579
- name: Restore build cache
7680
uses: actions/cache@v4
7781
with:
@@ -86,6 +90,7 @@ jobs:
8690
- name: Install Rust toolchain
8791
run: |
8892
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
93+
source .cargo/env
8994
- name: Restore build cache
9095
uses: actions/cache@v4
9196
with:
@@ -100,6 +105,7 @@ jobs:
100105
- name: Install Rust toolchain
101106
run: |
102107
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
108+
source .cargo/env
103109
- name: Restore build cache
104110
uses: actions/cache@v4
105111
with:
@@ -114,6 +120,7 @@ jobs:
114120
- name: Install Rust toolchain
115121
run: |
116122
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
123+
source .cargo/env
117124
- name: Restore build cache
118125
uses: actions/cache@v4
119126
with:
@@ -128,6 +135,7 @@ jobs:
128135
- name: Install Rust toolchain
129136
run: |
130137
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
138+
source .cargo/env
131139
- name: Restore build cache
132140
uses: actions/cache@v4
133141
with:
@@ -144,6 +152,7 @@ jobs:
144152
- name: Install Rust toolchain
145153
run: |
146154
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
155+
source .cargo/env
147156
- name: Restore build cache
148157
uses: actions/cache@v4
149158
with:
@@ -168,6 +177,7 @@ jobs:
168177
- name: Install Rust toolchain
169178
run: |
170179
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
180+
source .cargo/env
171181
- name: Restore build cache
172182
uses: actions/cache@v4
173183
with:
@@ -182,6 +192,7 @@ jobs:
182192
- name: Install Rust toolchain
183193
run: |
184194
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
195+
source .cargo/env
185196
- name: Restore build cache
186197
uses: actions/cache@v4
187198
with:
@@ -203,6 +214,7 @@ jobs:
203214
- name: Install Rust toolchain
204215
run: |
205216
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
217+
source .cargo/env
206218
- name: Deploy fluent controller
207219
run: ./local-test.sh fluent
208220
- name: Run fluent e2e tests
@@ -220,6 +232,7 @@ jobs:
220232
- name: Install Rust toolchain
221233
run: |
222234
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
235+
source .cargo/env
223236
- name: Deploy rabbitmq controller
224237
run: ./local-test.sh rabbitmq
225238
- name: Run rabbitmq e2e tests
@@ -237,6 +250,7 @@ jobs:
237250
- name: Install Rust toolchain
238251
run: |
239252
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
253+
source .cargo/env
240254
- name: Deploy rabbitmq controller
241255
run: ./local-test.sh rabbitmq
242256
- name: Run rabbitmq e2e tests for scaling
@@ -254,6 +268,7 @@ jobs:
254268
- name: Install Rust toolchain
255269
run: |
256270
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
271+
source .cargo/env
257272
- name: Deploy rabbitmq controller
258273
run: ./local-test.sh rabbitmq
259274
- name: Run rabbitmq e2e tests for ephemeral
@@ -271,6 +286,7 @@ jobs:
271286
- name: Install Rust toolchain
272287
run: |
273288
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
289+
source .cargo/env
274290
- name: Deploy zookeeper controller
275291
run: ./local-test.sh zookeeper
276292
- name: Run zookeeper e2e tests
@@ -288,6 +304,7 @@ jobs:
288304
- name: Install Rust toolchain
289305
run: |
290306
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
307+
source .cargo/env
291308
- name: Deploy zookeeper controller
292309
run: ./local-test.sh zookeeper
293310
- name: Run zookeeper e2e tests for scaling
@@ -305,6 +322,7 @@ jobs:
305322
- name: Install Rust toolchain
306323
run: |
307324
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain 1.82.0-x86_64-unknown-linux-gnu -y
325+
source .cargo/env
308326
- name: Deploy vreplicaset controller
309327
run: ./local-test.sh vreplicaset
310328
- name: Run vreplicaset e2e tests

0 commit comments

Comments
 (0)