File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -151,6 +151,40 @@ jobs:
151151 ibmcloud plugin list | grep -q '^secrets-manager\b' &&
152152 ibmcloud plugin list | grep -q '^container-registry\b.\+1\.3\.\b'
153153
154+ test-plugins-already-installed :
155+ runs-on : ubuntu-latest
156+ steps :
157+ - uses : actions/checkout@v6
158+ - name : Set up ibmcloud CLI
159+ uses : ./
160+ with :
161+ plugins : container-service
162+ - name : Set up ibmcloud CLI (again)
163+ uses : ./
164+ with :
165+ plugins : container-service secrets-manager
166+ - name : Check plugins are installed
167+ run : |
168+ ibmcloud plugin list | grep -q '^container-service\b' &&
169+ ibmcloud plugin list | grep -q '^secrets-manager\b'
170+
171+ test-plugins-already-installed-with-older-versions :
172+ runs-on : ubuntu-latest
173+ steps :
174+ - uses : actions/checkout@v6
175+ - name : Set up ibmcloud CLI
176+ uses : ./
177+ with :
178+ plugins : container-service@0.4.102
179+ - name : Set up ibmcloud CLI (again)
180+ uses : ./
181+ with :
182+ plugins : container-service secrets-manager
183+ - name : Check plugins are installed
184+ run : |
185+ ibmcloud plugin list | grep -q '^container-service\b' &&
186+ ibmcloud plugin list | grep -q '^secrets-manager\b'
187+
154188 test-login :
155189 runs-on : ubuntu-latest
156190 steps :
You can’t perform that action at this time.
0 commit comments