Skip to content

Commit 4e653bd

Browse files
committed
ci(main): fix
1 parent 239f7cc commit 4e653bd

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
# Or commit to trigger the pre-commit hook if enabled.
66
jobs:
77
docker:
8-
needs:
9-
- nix-fast-build
108
permissions:
119
contents: read
1210
packages: write
@@ -21,7 +19,7 @@ jobs:
2119
- name: Load image to docker
2220
run: nix run .#load-fractopo-image
2321
- name: Run fractopo-app container
24-
run: docker run -d --name fractopo-test -p 2718:2718 fractopo-app:vsrjfhp7gd4pgxxzhdrmnr4xglwyln35
22+
run: docker run -d --name fractopo-test -p 2718:2718 localhost/fractopo-app:vsrjfhp7gd4pgxxzhdrmnr4xglwyln35
2523
- name: Wait for API to be ready
2624
run: |-
2725
for i in {1..30}; do

nix/ci.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ in
133133
];
134134
};
135135
docker = lib.recursiveUpdate publishPackages {
136-
needs = [ "nix-fast-build" ];
136+
# TODO: For debugging
137+
# needs = [ "nix-fast-build" ];
137138
steps =
138139
let
139140

0 commit comments

Comments
 (0)