File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 33
33
strategy :
34
34
matrix :
35
35
backend : [compose, k8s]
36
+ cli : [--rust_cli, ""]
36
37
steps :
37
38
- uses : actions/checkout@v3
38
39
- if : matrix.backend == 'compose'
@@ -41,14 +42,17 @@ jobs:
41
42
uses : extractions/setup-just@v1
42
43
- if : matrix.backend == 'k8s'
43
44
uses : medyagh/setup-minikube@master
45
+ - if : matrix.cli == '--rust_cli'
46
+ run : |
47
+ cargo build
44
48
- if : matrix.backend == 'k8s'
45
49
run : |
46
50
pip install --upgrade pip
47
51
pip install -e .
48
52
just start
49
53
kubectl wait --for=condition=Ready --timeout=2m pod rpc-0
50
54
kubectl port-forward svc/rpc 9276:9276 &
51
- - run : ./test/rpc_test.py --backend=${{matrix.backend}}
55
+ - run : ./test/rpc_test.py --backend=${{matrix.backend}} ${{matrix.cli}}
52
56
graph :
53
57
runs-on : ubuntu-latest
54
58
strategy :
You can’t perform that action at this time.
0 commit comments