Skip to content

Commit a84e5e7

Browse files
committed
FIXUP: add nightly test
1 parent d1c509a commit a84e5e7

File tree

1 file changed

+48
-8
lines changed

1 file changed

+48
-8
lines changed

.github/workflows/test.yml

Lines changed: 48 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -253,11 +253,51 @@ jobs:
253253
# - checks: version, cached
254254
# - install 1.10 (nightly)
255255
# - 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

Comments
 (0)