File tree Expand file tree Collapse file tree 3 files changed +28
-7
lines changed Expand file tree Collapse file tree 3 files changed +28
-7
lines changed Original file line number Diff line number Diff line change
1
+ name : " Build nix"
2
+ on :
3
+ pull_request :
4
+ push :
5
+ branches :
6
+ - develop
7
+ - compatible
8
+ - berkeley
9
+ - releases/**
10
+ - main
11
+ jobs :
12
+ tests :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ with :
17
+ fetch-depth : 0
18
+ - uses : cachix/install-nix-action@v20
19
+ - uses : DeterminateSystems/magic-nix-cache-action@v2
20
+ - run : nix/pin.sh
21
+ - run : nix build mina
22
+ env :
23
+ GIT_LFS_SKIP_SMUDGE : 1
24
+ - run : nix develop mina
Original file line number Diff line number Diff line change 33
33
],
34
34
label = " Build test-executive" ,
35
35
key = " build-test-executive" ,
36
- target = Size. XLarge ,
37
- `if` = Some " build.branch != 'develop' && build.branch != 'compatible' && build.branch != 'develop-next'"
36
+ target = Size. XLarge
38
37
},
39
38
40
39
execute = \ (testName : Text ) -> \ (dependsOn : List Command.TaggedKey. Type ) ->
53
52
label = " ${testName} integration test" ,
54
53
key = " integration-test-${testName}" ,
55
54
target = Size. Integration ,
56
- depends_on = dependsOn,
57
- `if` = Some " build.branch != 'develop' && build.branch != 'compatible' && build.branch != 'develop-next'"
55
+ depends_on = dependsOn
58
56
},
59
57
60
58
buildJs = \ (duneProfile : Text ) ->
72
70
],
73
71
label = " Build JS integration tests" ,
74
72
key = " build-js-tests" ,
75
- target = Size. XLarge ,
76
- `if` = Some " build.branch != 'develop' && build.branch != 'compatible' && build.branch != 'develop-next'"
73
+ target = Size. XLarge
77
74
},
78
75
79
76
executeWithJs = \ (testName : Text ) -> \ (dependsOn : List Command.TaggedKey. Type ) ->
94
91
key = " integration-test-${testName}" ,
95
92
target = Size. Integration ,
96
93
depends_on = dependsOn,
97
- `if` = Some " build.branch != 'develop' && build.branch != 'compatible' && build.branch != 'develop-next'" ,
98
94
soft_fail = Some (B / SoftFail. Boolean True )
99
95
}
100
96
}
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ inputs:
68
68
} ;
69
69
libp2p-keypair = lib . mkOption {
70
70
type = path ;
71
+ default = "/root/libp2p-keys/key" ;
71
72
} ;
72
73
73
74
waitForRpc = lib . mkOption {
You can’t perform that action at this time.
0 commit comments