File tree 5 files changed +13
-23
lines changed
5 files changed +13
-23
lines changed Original file line number Diff line number Diff line change 11
11
description : " Docker image name"
12
12
type : string
13
13
default : " docker.fluence.dev/nox"
14
- flavour :
15
- # not used, here for compatibility
16
- description : " nox flavour"
17
- type : string
18
- default : " minimal"
19
- nox-sha :
20
- # not used, here for compatibility
21
- description : " sha256 hash of nox binary"
22
- type : string
23
14
outputs :
24
15
nox-image :
25
16
description : " nox snapshot image"
28
19
jobs :
29
20
publish :
30
21
name : " Publish snapshot"
31
- runs-on : builder
22
+ runs-on : ubuntu-latest
32
23
timeout-minutes : 60
33
24
34
25
outputs :
@@ -109,7 +100,7 @@ jobs:
109
100
# github allows only 10GB of cache
110
101
# so save cache only on merge to master
111
102
# to use less space and speed up CI
112
- cache-to : ${{ github.event == 'push' && 'type=gha,mode=max' || '' }}
103
+ cache-to : ${{ github.event_name == 'push' && 'type=gha,mode=max' || '' }}
113
104
114
105
- name : Print results to check summary
115
106
if : always()
Original file line number Diff line number Diff line change 86
86
with :
87
87
nox-image : " ${{ needs.nox-snapshot.outputs.nox-image }}"
88
88
89
-
90
89
js-client :
91
90
needs :
92
91
- nox-snapshot
@@ -100,11 +99,3 @@ jobs:
100
99
uses : fluencelabs/aqua/.github/workflows/tests.yml@main
101
100
with :
102
101
nox-image : " ${{ needs.nox-snapshot.outputs.nox-image }}"
103
-
104
- # registry:
105
- # needs:
106
- # - nox-snapshot
107
- # uses: fluencelabs/registry/.github/workflows/tests.yml@main
108
- # with:
109
- # nox-image: "${{ needs.nox-snapshot.outputs.nox-image }}"
110
- # if-no-artifacts-found: warn
Original file line number Diff line number Diff line change 45
45
46
46
bump-version :
47
47
if : needs.release-please.outputs.pr != null
48
- runs-on : builder
48
+ runs-on : linux-amd64-c-2xlarge
49
49
needs :
50
50
- release-please
51
51
Original file line number Diff line number Diff line change 7
7
- " .github/**"
8
8
- " !.github/workflows/run-tests.yml"
9
9
- " !.github/workflows/tests.yml"
10
+ push :
11
+ branches :
12
+ - " master"
13
+ paths-ignore :
14
+ - " **.md"
15
+ - " .github/**"
16
+ - " !.github/workflows/tests.yml"
17
+ - " !.github/workflows/run-tests.yml"
10
18
11
19
concurrency :
12
20
group : " ${{ github.workflow }}-${{ github.ref }}"
20
28
test-retries : 0
21
29
22
30
lints :
23
- runs-on : builder
31
+ runs-on : linux-amd64-c-2xlarge
24
32
25
33
env :
26
34
RUSTFLAGS : " -D warnings --cfg tokio_unstable -C link-arg=-B/usr/local/bin/mold"
Original file line number Diff line number Diff line change 23
23
jobs :
24
24
tests :
25
25
name : " cargo nextest"
26
- runs-on : builder
26
+ runs-on : linux-amd64-c-2xlarge
27
27
timeout-minutes : 60
28
28
29
29
steps :
You can’t perform that action at this time.
0 commit comments