diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 23a7400f4..40f4435be 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -50,16 +50,16 @@ jobs: - name: testprep run: sudo apt-get install tcl8.6 tclx - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests - if: !contains(github.event.inputs.skiptests, 'sentinel') + if: true && !contains(github.event.inputs.skiptests, 'sentinel') run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}} - name: unittest run: ./src/redis-server test all @@ -83,16 +83,16 @@ jobs: - name: testprep run: sudo apt-get install tcl8.6 tclx - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests - if: !contains(github.event.inputs.skiptests, 'sentinel') + if: true && !contains(github.event.inputs.skiptests, 'sentinel') run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}} test-ubuntu-no-malloc-usable-size: @@ -114,16 +114,16 @@ jobs: - name: testprep run: sudo apt-get install tcl8.6 tclx - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests - if: !contains(github.event.inputs.skiptests, 'sentinel') + if: true && !contains(github.event.inputs.skiptests, 'sentinel') run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}} test-ubuntu-32bit: @@ -147,18 +147,18 @@ jobs: - name: testprep run: sudo apt-get install tcl8.6 tclx - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: | make -C tests/modules 32bit # the script below doesn't have an argument, we must build manually ahead of time ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests - if: !contains(github.event.inputs.skiptests, 'sentinel') + if: true && !contains(github.event.inputs.skiptests, 'sentinel') run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}} - name: unittest run: ./src/redis-server test all @@ -185,22 +185,22 @@ jobs: sudo apt-get install tcl8.6 tclx tcl-tls ./utils/gen-test-certs.sh - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: | ./runtest --accurate --verbose --tls --dump-logs ${{github.event.inputs.test_args}} ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: | ./runtest-moduleapi --verbose --tls ${{github.event.inputs.test_args}} ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests - if: !contains(github.event.inputs.skiptests, 'sentinel') + if: true && !contains(github.event.inputs.skiptests, 'sentinel') run: | ./runtest-sentinel --tls ${{github.event.inputs.cluster_test_args}} ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: | ./runtest-cluster --tls ${{github.event.inputs.cluster_test_args}} ./runtest-cluster ${{github.event.inputs.cluster_test_args}} @@ -225,10 +225,10 @@ jobs: - name: testprep run: sudo apt-get install tcl8.6 tclx - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --config io-threads 4 --config io-threads-do-reads yes --accurate --verbose --tags network --dump-logs ${{github.event.inputs.test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster --config io-threads 4 --config io-threads-do-reads yes ${{github.event.inputs.cluster_test_args}} test-valgrind: @@ -252,10 +252,10 @@ jobs: sudo apt-get update sudo apt-get install tcl8.6 tclx valgrind -y - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --valgrind --verbose --clients 1 --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --valgrind --no-latency --verbose --clients 1 ${{github.event.inputs.test_args}} - name: unittest run: | @@ -283,10 +283,10 @@ jobs: sudo apt-get update sudo apt-get install tcl8.6 tclx valgrind -y - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: /runtest --valgrind --verbose --clients 1 --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --valgrind --no-latency --verbose --clients 1 ${{github.event.inputs.test_args}} test-centos7-jemalloc: @@ -311,16 +311,16 @@ jobs: - name: testprep run: yum -y install which tcl tclx - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests - if: !contains(github.event.inputs.skiptests, 'sentinel') + if: true && !contains(github.event.inputs.skiptests, 'sentinel') run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}} test-centos7-tls: @@ -348,22 +348,22 @@ jobs: yum -y install tcl tcltls tclx ./utils/gen-test-certs.sh - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: | ./runtest --accurate --verbose --tls --dump-logs ${{github.event.inputs.test_args}} ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: | ./runtest-moduleapi --verbose --tls ${{github.event.inputs.test_args}} ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests - if: !contains(github.event.inputs.skiptests, 'sentinel') + if: true && !contains(github.event.inputs.skiptests, 'sentinel') run: | ./runtest-sentinel --tls ${{github.event.inputs.cluster_test_args}} ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: | ./runtest-cluster --tls ${{github.event.inputs.cluster_test_args}} ./runtest-cluster ${{github.event.inputs.cluster_test_args}} @@ -385,15 +385,15 @@ jobs: - name: make run: make - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --accurate --verbose --no-latency --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}} test-freebsd: @@ -444,15 +444,15 @@ jobs: - name: testprep run: apk add tcl procps tclx - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}} test-alpine-libc-malloc: @@ -476,13 +476,13 @@ jobs: - name: testprep run: apk add tcl procps tclx - name: test - if: !contains(github.event.inputs.skiptests, 'redis') + if: true && !contains(github.event.inputs.skiptests, 'redis') run: ./runtest --accurate --verbose --dump-logs ${{github.event.inputs.test_args}} - name: module api test - if: !contains(github.event.inputs.skiptests, 'modules') + if: true && !contains(github.event.inputs.skiptests, 'modules') run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}} - name: sentinel tests run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}} - name: cluster tests - if: !contains(github.event.inputs.skiptests, 'cluster') + if: true && !contains(github.event.inputs.skiptests, 'cluster') run: ./runtest-cluster ${{github.event.inputs.cluster_test_args}}