99 - main
1010
1111jobs :
12- dashboard_build :
13- name : dashboard-build
14- runs-on : ubuntu-latest
15- steps :
16- - name : Checkout sources
17- uses : actions/checkout@v4
18-
19- - uses : extractions/setup-just@v2
20-
21- - name : Setup Node
22- uses : actions/setup-node@v4
23- with :
24- node-version : " 22"
25-
26- - name : Setup pnpm
27- uses : pnpm/action-setup@v4
28- with :
29- version : 9
30-
31- - name : Dashboard build
32- run : just dashboard
33-
34- lib_build :
35- name : lib-build
36- runs-on : ubuntu-latest
37- steps :
38- - name : Checkout sources
39- uses : actions/checkout@v4
40-
41- - uses : extractions/setup-just@v2
42-
43- - name : Setup Node
44- uses : actions/setup-node@v4
45- with :
46- node-version : " 22"
47-
48- - name : Setup pnpm
49- uses : pnpm/action-setup@v4
50- with :
51- version : 9
52-
53- - name : Lib build
54- run : just lib
55-
56- check :
57- name : check
58- runs-on : ubuntu-latest
59- steps :
60- - name : Install toolchain
61- uses : actions-rust-lang/setup-rust-toolchain@v1
62- with :
63- rustflags : " "
64-
65- - name : Checkout Sources
66- uses : actions/checkout@v4
67-
68- - uses : extractions/setup-just@v2
69-
70- - name : Install Protoc
71- uses : arduino/setup-protoc@v3
72- with :
73- repo-token : ${{ secrets.GITHUB_TOKEN }}
74-
75- - name : Run check
76- run : just check
77-
78- clippy :
79- name : clippy
80- runs-on : ubuntu-latest
81- steps :
82- - name : Install toolchain
83- uses : actions-rust-lang/setup-rust-toolchain@v1
84- with :
85- rustflags : " "
86-
87- - name : Checkout Sources
88- uses : actions/checkout@v4
89-
90- - uses : extractions/setup-just@v2
91-
92- - name : Install Protoc
93- uses : arduino/setup-protoc@v3
94- with :
95- repo-token : ${{ secrets.GITHUB_TOKEN }}
96-
97- - name : Run clippy
98- run : just clippy
12+ # dashboard_build:
13+ # name: dashboard-build
14+ # runs-on: ubuntu-latest
15+ # steps:
16+ # - name: Checkout sources
17+ # uses: actions/checkout@v4
18+ #
19+ # - uses: extractions/setup-just@v2
20+ #
21+ # - name: Setup Node
22+ # uses: actions/setup-node@v4
23+ # with:
24+ # node-version: "22"
25+ #
26+ # - name: Setup pnpm
27+ # uses: pnpm/action-setup@v4
28+ # with:
29+ # version: 9
30+ #
31+ # - name: Dashboard build
32+ # run: just dashboard
33+ #
34+ # lib_build:
35+ # name: lib-build
36+ # runs-on: ubuntu-latest
37+ # steps:
38+ # - name: Checkout sources
39+ # uses: actions/checkout@v4
40+ #
41+ # - uses: extractions/setup-just@v2
42+ #
43+ # - name: Setup Node
44+ # uses: actions/setup-node@v4
45+ # with:
46+ # node-version: "22"
47+ #
48+ # - name: Setup pnpm
49+ # uses: pnpm/action-setup@v4
50+ # with:
51+ # version: 9
52+ #
53+ # - name: Lib build
54+ # run: just lib
55+ #
56+ # check:
57+ # name: check
58+ # runs-on: ubuntu-latest
59+ # steps:
60+ # - name: Install toolchain
61+ # uses: actions-rust-lang/setup-rust-toolchain@v1
62+ # with:
63+ # rustflags: ""
64+ #
65+ # - name: Checkout Sources
66+ # uses: actions/checkout@v4
67+ #
68+ # - uses: extractions/setup-just@v2
69+ #
70+ # - name: Install Protoc
71+ # uses: arduino/setup-protoc@v3
72+ # with:
73+ # repo-token: ${{ secrets.GITHUB_TOKEN }}
74+ #
75+ # - name: Run check
76+ # run: just check
77+ #
78+ # clippy:
79+ # name: clippy
80+ # runs-on: ubuntu-latest
81+ # steps:
82+ # - name: Install toolchain
83+ # uses: actions-rust-lang/setup-rust-toolchain@v1
84+ # with:
85+ # rustflags: ""
86+ #
87+ # - name: Checkout Sources
88+ # uses: actions/checkout@v4
89+ #
90+ # - uses: extractions/setup-just@v2
91+ #
92+ # - name: Install Protoc
93+ # uses: arduino/setup-protoc@v3
94+ # with:
95+ # repo-token: ${{ secrets.GITHUB_TOKEN }}
96+ #
97+ # - name: Run clippy
98+ # run: just clippy
9999
100100 test :
101- needs : [clippy, check]
101+ # needs: [clippy, check]
102102 name : tests
103103 runs-on : ubuntu-latest
104104 steps :
@@ -124,9 +124,14 @@ jobs:
124124 run : |
125125 curl -fsS https://hub.infinyon.cloud/install/install.sh | bash
126126 export PATH=${PATH}:~/.fluvio/bin:~/.fvm/bin
127+ echo $PATH
128+ ls ~/.fluvio -R
129+ ls ~/.fvm -R
130+ fluvio || true
131+ which fluvio || true
127132
128133 - name : Tests
129- run : just test-all
134+ run : just fluvio
130135
131136 - name : Upload coverage reports to Codecov
132137 uses : codecov/codecov-action@v5
0 commit comments