@@ -253,11 +253,51 @@ jobs:
253
253
# - checks: version, cached
254
254
# - install 1.10 (nightly)
255
255
# - checks: version, cached
256
- # test-exact-version-nightly
257
- # runs-on: ubuntu-latest
258
- # env:
259
- # TARANTOOL_CACHE_KEY_SUFFIX: -F-${{ github.run_id }}
260
- # steps:
261
- # - uses: actions/checkout@v2
262
- #
263
- # <...>
256
+ test-exact-version-nightly
257
+ runs-on : ubuntu-latest
258
+ env :
259
+ TARANTOOL_CACHE_KEY_SUFFIX : -F-${{ github.run_id }}
260
+ steps :
261
+ - uses : actions/checkout@v2
262
+
263
+ - id : latest-version
264
+ uses : ./.github/actions/latest-version
265
+ with :
266
+ tarantool-series : ' 1.10'
267
+ nightly-build : true
268
+
269
+ - name : Install 1.10.LATEST.LATEST (nightly, non-cached)
270
+ uses : ./
271
+ with :
272
+ tarantool-version : ' ${{ steps.latest-version.outputs.abcd }}'
273
+ nightly-build : true
274
+
275
+ - uses : ./.github/actions/verify-version
276
+ with :
277
+ tarantool-version : ' ${{ steps.latest-version.outputs.git-describe }}'
278
+ from-cache : false
279
+
280
+ - name : Uninstall tarantool
281
+ run : sudo apt-get -y remove tarantool tarantool-dev tarantool-common
282
+
283
+ - name : Install 1.10.LATEST (nightly, cached)
284
+ uses : ./
285
+ with :
286
+ tarantool-version : ' 1.10'
287
+ nightly-build : true
288
+
289
+ - uses : ./.github/actions/verify-version
290
+ with :
291
+ tarantool-version : ' ${{ steps.latest-version.outputs.git-describe }}'
292
+ from-cache : true
293
+
294
+ - name : Install 1.10 (nightly, cached)
295
+ uses : ./
296
+ with :
297
+ tarantool-version : ' 1.10'
298
+ nightly-build : true
299
+
300
+ - uses : ./.github/actions/verify-version
301
+ with :
302
+ tarantool-version : ' ${{ steps.latest-version.outputs.git-describe }}'
303
+ from-cache : true
0 commit comments