summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2021-02-07 15:41:49 +0200
committerOran Agra <oran@redislabs.com>2021-02-23 01:35:37 +0200
commit4bba84f096941a848bb9fc87a75219ed82d574bd (patch)
treec7b9027a179f6c98c16c4dd6de7088f542615f48
parent17c3ac89e7cf15f299927fc5638177421ae3afe8 (diff)
downloadredis-4bba84f096941a848bb9fc87a75219ed82d574bd.tar.gz
Update CI on Ubuntu to tcl8.6 (since 20.04 is now used) (#8460)
Github started shifting some repositoreis to use ubuntu 20.04 by default tcl8.5 is missing in these, but 8.6 exists in both 20.04 and 18.04 (cherry picked from commit 018f7b7378d576ef80f2af11293713cc1a26da53)
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/daily.yml10
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 70aebfc87..afe61ddab 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
run: make BUILD_TLS=yes
- name: test
run: |
- sudo apt-get install tcl8.5
+ sudo apt-get install tcl8.6
./runtest --verbose
- name: module api test
run: ./runtest-moduleapi --verbose
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
index 61e3dee1f..c75d1d00c 100644
--- a/.github/workflows/daily.yml
+++ b/.github/workflows/daily.yml
@@ -20,7 +20,7 @@ jobs:
run: make
- name: test
run: |
- sudo apt-get install tcl8.5
+ sudo apt-get install tcl8.6
./runtest --accurate --verbose
- name: module api test
run: ./runtest-moduleapi --verbose
@@ -39,7 +39,7 @@ jobs:
run: make MALLOC=libc
- name: test
run: |
- sudo apt-get install tcl8.5
+ sudo apt-get install tcl8.6
./runtest --accurate --verbose
- name: module api test
run: ./runtest-moduleapi --verbose
@@ -60,7 +60,7 @@ jobs:
make 32bit
- name: test
run: |
- sudo apt-get install tcl8.5
+ sudo apt-get install tcl8.6
./runtest --accurate --verbose
- name: module api test
run: |
@@ -82,7 +82,7 @@ jobs:
make BUILD_TLS=yes
- name: test
run: |
- sudo apt-get install tcl8.5 tcl-tls
+ sudo apt-get install tcl8.6 tcl-tls
./utils/gen-test-certs.sh
./runtest --accurate --verbose --tls
./runtest --accurate --verbose
@@ -110,7 +110,7 @@ jobs:
- name: test
run: |
sudo apt-get update
- sudo apt-get install tcl8.5 valgrind -y
+ sudo apt-get install tcl8.6 valgrind -y
./runtest --valgrind --verbose --clients 1
- name: module api test
run: ./runtest-moduleapi --valgrind --verbose --clients 1