Skip to content

Commit 6933efd

Browse files
Don't build and test EOL versions
There's no reason to build and test EOL versions of Cloudstack, OpenTofu, and Terraform. Also recent supported versions were being excluded.
1 parent 16915b6 commit 6933efd

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/acceptance.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ permissions:
3030

3131
env:
3232
CLOUDSTACK_API_URL: http://localhost:8080/client/api
33-
CLOUDSTACK_VERSIONS: "['4.19.0.1', '4.19.1.3', '4.19.2.0', '4.19.3.0', '4.20.1.0']"
33+
CLOUDSTACK_VERSIONS: "['4.20.2.0', '4.22.0.0']"
3434

3535
jobs:
3636
prepare-matrix:
@@ -78,8 +78,9 @@ jobs:
7878
fail-fast: false
7979
matrix:
8080
terraform-version:
81-
- '1.11.*'
8281
- '1.12.*'
82+
- '1.13.*'
83+
- '1.14.*'
8384
cloudstack-version: ${{ fromJson(needs.prepare-matrix.outputs.cloudstack-versions) }}
8485

8586
acceptance-opentofu:
@@ -116,8 +117,9 @@ jobs:
116117
fail-fast: false
117118
matrix:
118119
opentofu-version:
119-
- '1.8.*'
120120
- '1.9.*'
121+
- '1.10.*'
122+
- '1.11.*'
121123
cloudstack-version: ${{ fromJson(needs.prepare-matrix.outputs.cloudstack-versions) }}
122124

123125
all-jobs-passed: # Will succeed if it is skipped

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,13 @@ docker pull apache/cloudstack-simulator
128128

129129
or pull it with a particular build tag
130130

131-
docker pull apache/cloudstack-simulator:4.20.1.0
131+
docker pull apache/cloudstack-simulator:4.22.0.0
132132

133133
docker run --name simulator -p 8080:5050 -d apache/cloudstack-simulator
134134

135135
or
136136

137-
docker run --name simulator -p 8080:5050 -d apache/cloudstack-simulator:4.20.1.0
137+
docker run --name simulator -p 8080:5050 -d apache/cloudstack-simulator:4.22.0.0
138138
```
139139

140140
When Docker started the container you can go to <http://localhost:8080/client> and login to the CloudStack UI as user `admin` with password `password`. It can take a few minutes for the container is fully ready, so you probably need to wait and refresh the page for a few minutes before the login page is shown.

0 commit comments

Comments
 (0)