File tree 2 files changed +18
-3
lines changed
2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,26 @@ jobs:
46
46
strategy :
47
47
matrix :
48
48
variant : [ "integration-dind", "integration-dind-ssl", "integration-dind-ssh" ]
49
+ api-version : [1.44, 1.43, 1.42, 1.24] # 1.24 is the oldest supported version
50
+ engine-version : [25.0] # latest
51
+ include : # ugly repetition because GHA doesn't support lists in these objects so we need a separate entry for each variant
52
+ - engine-version : 23.0 # mirantis lts
53
+ api-version : 1.42
54
+ variant : " integration-dind"
55
+ - engine-version : 23.0 # mirantis lts
56
+ api-version : 1.42
57
+ variant : " integration-dind-ssl"
58
+ - engine-version : 23.0 # mirantis lts
59
+ api-version : 1.42
60
+ variant : " integration-dind-ssh"
49
61
50
62
steps :
51
63
- uses : actions/checkout@v4
52
- - name : make ${{ matrix.variant }}
64
+ - name : ${{ matrix.variant }} - v${{ matrix.engine-version }}/v${{ matrix.api-version }}
53
65
run : |
54
66
docker logout
55
67
rm -rf ~/.docker
56
68
make ${{ matrix.variant }}
69
+ env :
70
+ TEST_ENGINE_VERSION : ${{ matrix.engine-version }}
71
+ TEST_API_VERSION : ${{ matrix.api-version }}
Original file line number Diff line number Diff line change 1
- TEST_API_VERSION ?= 1.43
2
- TEST_ENGINE_VERSION ?= 24 .0
1
+ TEST_API_VERSION ?= 1.44
2
+ TEST_ENGINE_VERSION ?= 25 .0
3
3
4
4
ifeq ($(OS ) ,Windows_NT)
5
5
PLATFORM := Windows
You can’t perform that action at this time.
0 commit comments