File tree Expand file tree Collapse file tree 3 files changed +17
-15
lines changed
Expand file tree Collapse file tree 3 files changed +17
-15
lines changed Original file line number Diff line number Diff line change 99 runs-on : ${{ matrix.os }}
1010 strategy :
1111 matrix :
12- os : [ubuntu-latest, macos-14 ]
12+ os : [ubuntu-latest, macos-latest ]
1313 steps :
1414 - uses : actions/checkout@v4
1515 - uses : DeterminateSystems/nix-installer-action@main
1616 - name : Install omnix
17- run : nix --accept-flake-config profile install "github:juspay/omnix "
18- - run : om ci
17+ run : nix --accept-flake-config profile install "github:juspay/vira "
18+ - run : vira ci
1919 flake-parts-linkCheck :
2020 runs-on : ubuntu-latest
2121 steps :
Original file line number Diff line number Diff line change 88 description = "Example flake using process-compose-flake" ;
99 path = builtins . path { path = ./example ; filter = path : _ : baseNameOf path == "flake.nix" ; } ;
1010 } ;
11-
12- # https://github.com/srid/nixci
13- om . ci . default = let overrideInputs = { process-compose-flake = ./. ; } ; in {
14- example = {
15- inherit overrideInputs ;
16- dir = "example" ;
17- } ;
18- dev = {
19- inherit overrideInputs ;
20- dir = "dev" ;
21- } ;
22- } ;
2311 } ;
2412}
Original file line number Diff line number Diff line change 1+ -- Pipeline configuration for Vira <https://vira.nixos.asia/>
2+
3+ \ ctx pipeline ->
4+ pipeline
5+ { build. systems =
6+ [ " x86_64-linux"
7+ -- , "aarch64-darwin"
8+ ]
9+ , build. flakes =
10+ [ " ."
11+ , " ./example" { overrideInputs = [(" process-compose-flake" , " ." )] }
12+ , " ./dev" { overrideInputs = [(" process-compose-flake" , " ." )] }
13+ ]
14+ }
You can’t perform that action at this time.
0 commit comments