File tree Expand file tree Collapse file tree 8 files changed +24
-19
lines changed Expand file tree Collapse file tree 8 files changed +24
-19
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- set -euxo
3
+ set -eu
4
4
5
5
DISTRO_TYPE=" "
6
6
[[ -x " /usr/bin/apt-get" ]] && DISTRO_TYPE=" deb"
Original file line number Diff line number Diff line change 4
4
5
5
docker_image=" ${1} "
6
6
7
- docker run -e OBS_PROJECT=" ${OBS_PROJECT:- } " -e CRYSTAL_VERSION=" ${CRYSTAL_VERSION:- } " --rm -it -v $( pwd) /scripts:/scripts -v $( pwd) /support:/support $docker_image /bin/sh -c " /support/test-install.sh ${@: 2} "
7
+ docker run --pull=always - e OBS_PROJECT=" ${OBS_PROJECT:- } " -e CRYSTAL_VERSION=" ${CRYSTAL_VERSION:- } " --rm -it -v $( pwd) /scripts:/scripts -v $( pwd) /support:/support $docker_image /bin/sh -c " /support/test-install.sh ${@: 2} "
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bats
2
2
3
- @test " CentOS 8" {
4
- ./test-install-on-docker.sh centos:8
3
+ @test " CentOS 8 Stream " {
4
+ ./test-install-on-docker.sh quay.io/ centos/centos:stream8
5
5
}
6
6
7
7
@test " CentOS 7" {
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bats
2
2
3
+ @test " Debian 12" {
4
+ ./test-install-on-docker.sh debian:12
5
+ }
6
+
3
7
@test " Debian 11" {
4
8
./test-install-on-docker.sh debian:11
5
9
}
8
12
./test-install-on-docker.sh debian:10
9
13
}
10
14
11
- @test " Debian 9" {
12
- ./test-install-on-docker.sh debian:9
13
- }
14
-
15
15
@test " Debian Testing" {
16
16
./test-install-on-docker.sh debian:testing
17
17
}
Original file line number Diff line number Diff line change 4
4
./test-install-on-docker.sh fedora:rawhide
5
5
}
6
6
7
+ @test " Fedora 39" {
8
+ ./test-install-on-docker.sh fedora:39
9
+ }
10
+
7
11
@test " Fedora 38" {
8
12
./test-install-on-docker.sh fedora:38
9
13
}
10
14
11
15
@test " Fedora 37" {
12
16
./test-install-on-docker.sh fedora:37
13
17
}
14
-
15
- @test " Fedora 36" {
16
- ./test-install-on-docker.sh fedora:36
17
- }
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bats
2
2
3
+ @test " Linux Mint 21" {
4
+ ./test-install-on-docker.sh linuxmintd/mint21-amd64
5
+ }
6
+
3
7
@test " Linux Mint 20" {
4
8
./test-install-on-docker.sh linuxmintd/mint20-amd64
5
9
}
6
10
7
- @test " Linux Mint 19" {
8
- ./test-install-on-docker.sh linuxmintd/mint19-amd64
9
- }
Original file line number Diff line number Diff line change 4
4
./test-install-on-docker.sh opensuse/tumbleweed
5
5
}
6
6
7
+ @test " openSUSE Leap 15.5" {
8
+ ./test-install-on-docker.sh opensuse/leap:15.5
9
+ }
10
+
7
11
@test " openSUSE Leap 15.4" {
8
12
./test-install-on-docker.sh opensuse/leap:15.4
9
13
}
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bats
2
2
3
- @test " Ubuntu 23.04 " {
4
- ./test-install-on-docker.sh ubuntu:23.04
3
+ @test " Ubuntu 23.10 " {
4
+ ./test-install-on-docker.sh ubuntu:23.10
5
5
}
6
6
7
- @test " Ubuntu 22.10 " {
8
- ./test-install-on-docker.sh ubuntu:22.10
7
+ @test " Ubuntu 23.04 " {
8
+ ./test-install-on-docker.sh ubuntu:23.04
9
9
}
10
10
11
11
@test " Ubuntu 22.04" {
You can’t perform that action at this time.
0 commit comments