File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 16
16
17
17
export QUAY_TOKEN
18
18
19
+ export DOCKER_HOST=unix:///run/user/${UID} /podman/podman.sock
20
+
19
21
grep -oE ' Test[A-Za-z0-9]{,}' test/integration_test.go | while read -r test ; do
20
22
echo " Running test: ${test} "
21
23
go test -tags integration -count 1 -timeout 300s -run " ^${test} $" ./test/...
Original file line number Diff line number Diff line change @@ -10,11 +10,14 @@ readonly BASE_IMG="gabi"
10
10
11
11
{
12
12
set +x
13
- docker login quay.io -u " ${QUAY_USER} " -p " ${QUAY_TOKEN} "
13
+ podman login quay.io -u " ${QUAY_USER} " -p " ${QUAY_TOKEN} "
14
14
}
15
15
16
16
go test ./...
17
17
18
- ./integration.sh
18
+ podman pull quay.io/app-sre/gnomock-cleaner:latest
19
+ podman tag quay.io/app-sre/gnomock-cleaner:latest docker.io/orlangure/gnomock-cleaner:latest
19
20
20
- BUILD_CMD=" docker build" IMG=" ${BASE_IMG} :check" make docker-build
21
+ podman system service -t 0 & ./integration.sh
22
+
23
+ BUILD_CMD=" podman build" IMG=" ${BASE_IMG} :check" make docker-build
You can’t perform that action at this time.
0 commit comments