Skip to content

Commit e144bf6

Browse files
author
Artem
committed
run all tests to verify
1 parent e2f6906 commit e144bf6

File tree

1 file changed

+90
-90
lines changed

1 file changed

+90
-90
lines changed

.circleci/config.yml

Lines changed: 90 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -979,23 +979,23 @@ workflows:
979979
- /^fe/feature.*/
980980
- /^fe/bugfix.*/
981981
# BE Unit + Integration (limited RTEs) tests for "be/feature" or "be/bugfix" branches only
982-
backend-tests:
983-
jobs:
984-
- unit-tests-api:
985-
name: UTest - API
986-
filters:
987-
branches:
988-
only:
989-
- /^be/feature.*/
990-
- /^be/bugfix.*/
991-
- integration-tests-run:
992-
matrix:
993-
alias: itest-code
994-
parameters:
995-
rte: *iTestsNamesShort
996-
name: ITest - << matrix.rte >> (code)
997-
requires:
998-
- UTest - API
982+
# backend-tests:
983+
# jobs:
984+
# - unit-tests-api:
985+
# name: UTest - API
986+
# filters:
987+
# branches:
988+
# only:
989+
# - /^be/feature.*/
990+
# - /^be/bugfix.*/
991+
# - integration-tests-run:
992+
# matrix:
993+
# alias: itest-code
994+
# parameters:
995+
# rte: *iTestsNamesShort
996+
# name: ITest - << matrix.rte >> (code)
997+
# requires:
998+
# - UTest - API
999999
# E2E tests for "e2e/feature" or "e2e/bugfix" branches only
10001000
e2e-tests:
10011001
jobs:
@@ -1024,12 +1024,12 @@ workflows:
10241024
- approve:
10251025
name: Start All Tests
10261026
type: approval
1027-
filters:
1028-
branches:
1029-
only:
1030-
- /^feature.*/
1031-
- /^bugfix.*/
1032-
- main
1027+
# filters:
1028+
# branches:
1029+
# only:
1030+
# - /^feature.*/
1031+
# - /^bugfix.*/
1032+
# - main
10331033
# FE tests
10341034
- unit-tests-ui:
10351035
name: UTest - UI
@@ -1288,28 +1288,28 @@ workflows:
12881288
<<: *prodFilter # double check for "latest"
12891289
# Nightly tests
12901290
nightly:
1291-
triggers:
1292-
- schedule:
1293-
cron: '0 0 * * *'
1294-
filters:
1295-
branches:
1296-
only:
1297-
- main
1291+
# triggers:
1292+
# - schedule:
1293+
# cron: '0 0 * * *'
1294+
# filters:
1295+
# branches:
1296+
# only:
1297+
# - main
12981298
jobs:
12991299
# build docker image
13001300
- docker:
13011301
name: Build docker image
13021302
# build desktop app
1303-
- setup-sign-certificates:
1304-
name: Setup sign certificates (stage)
1305-
- setup-build:
1306-
name: Setup build (stage)
1307-
requires:
1308-
- Setup sign certificates (stage)
1309-
- linux:
1310-
name: Build app - Linux (stage)
1311-
requires:
1312-
- Setup build (stage)
1303+
# - setup-sign-certificates:
1304+
# name: Setup sign certificates (stage)
1305+
# - setup-build:
1306+
# name: Setup build (stage)
1307+
# requires:
1308+
# - Setup sign certificates (stage)
1309+
# - linux:
1310+
# name: Build app - Linux (stage)
1311+
# requires:
1312+
# - Setup build (stage)
13131313
# - windows:
13141314
# name: Build app - Windows (stage)
13151315
# requires:
@@ -1326,56 +1326,56 @@ workflows:
13261326
requires:
13271327
- Build docker image
13281328
# e2e web tests on docker image build
1329-
- e2e-tests:
1330-
name: E2ETest - Nightly
1331-
parallelism: 4
1332-
build: docker
1333-
report: true
1334-
requires:
1335-
- Build docker image
1336-
# e2e desktop tests on AppImage build
1337-
- e2e-app-image:
1338-
name: E2ETest (AppImage) - Nightly
1339-
parallelism: 2
1340-
report: true
1341-
requires:
1342-
- Build app - Linux (stage)
1343-
1344-
- virustotal-url:
1345-
name: Virus check - AppImage (nightly)
1346-
fileName: RedisInsight-v2-linux-x86_64.AppImage
1347-
- virustotal-url:
1348-
name: Virus check - deb (nightly)
1349-
fileName: RedisInsight-v2-linux-amd64.deb
1350-
- virustotal-url:
1351-
name: Virus check - rpm (nightly)
1352-
fileName: RedisInsight-v2-linux-x86_64.rpm
1353-
- virustotal-url:
1354-
name: Virus check - snap (nightly)
1355-
fileName: RedisInsight-v2-linux-amd64.snap
1356-
- virustotal-url:
1357-
name: Virus check x64 - dmg (nightly)
1358-
fileName: RedisInsight-v2-mac-x64.dmg
1359-
- virustotal-url:
1360-
name: Virus check arm64 - dmg (nightly)
1361-
fileName: RedisInsight-v2-mac-arm64.dmg
1362-
- virustotal-url:
1363-
name: Virus check MAS - pkg (nightly)
1364-
fileName: RedisInsight-mac-universal-mas.pkg
1365-
- virustotal-url:
1366-
name: Virus check - exe (nightly)
1367-
fileName: RedisInsight-v2-win-installer.exe
1368-
- virustotal-report:
1369-
name: Virus check report (prod)
1370-
requires:
1371-
- Virus check - AppImage (nightly)
1372-
- Virus check - deb (nightly)
1373-
- Virus check - rpm (nightly)
1374-
- Virus check - snap (nightly)
1375-
- Virus check x64 - dmg (nightly)
1376-
- Virus check arm64 - dmg (nightly)
1377-
- Virus check MAS - pkg (nightly)
1378-
- Virus check - exe (nightly)
1329+
# - e2e-tests:
1330+
# name: E2ETest - Nightly
1331+
# parallelism: 4
1332+
# build: docker
1333+
# report: true
1334+
# requires:
1335+
# - Build docker image
1336+
# # e2e desktop tests on AppImage build
1337+
# - e2e-app-image:
1338+
# name: E2ETest (AppImage) - Nightly
1339+
# parallelism: 2
1340+
# report: true
1341+
# requires:
1342+
# - Build app - Linux (stage)
1343+
#
1344+
# - virustotal-url:
1345+
# name: Virus check - AppImage (nightly)
1346+
# fileName: RedisInsight-v2-linux-x86_64.AppImage
1347+
# - virustotal-url:
1348+
# name: Virus check - deb (nightly)
1349+
# fileName: RedisInsight-v2-linux-amd64.deb
1350+
# - virustotal-url:
1351+
# name: Virus check - rpm (nightly)
1352+
# fileName: RedisInsight-v2-linux-x86_64.rpm
1353+
# - virustotal-url:
1354+
# name: Virus check - snap (nightly)
1355+
# fileName: RedisInsight-v2-linux-amd64.snap
1356+
# - virustotal-url:
1357+
# name: Virus check x64 - dmg (nightly)
1358+
# fileName: RedisInsight-v2-mac-x64.dmg
1359+
# - virustotal-url:
1360+
# name: Virus check arm64 - dmg (nightly)
1361+
# fileName: RedisInsight-v2-mac-arm64.dmg
1362+
# - virustotal-url:
1363+
# name: Virus check MAS - pkg (nightly)
1364+
# fileName: RedisInsight-mac-universal-mas.pkg
1365+
# - virustotal-url:
1366+
# name: Virus check - exe (nightly)
1367+
# fileName: RedisInsight-v2-win-installer.exe
1368+
# - virustotal-report:
1369+
# name: Virus check report (prod)
1370+
# requires:
1371+
# - Virus check - AppImage (nightly)
1372+
# - Virus check - deb (nightly)
1373+
# - Virus check - rpm (nightly)
1374+
# - Virus check - snap (nightly)
1375+
# - Virus check x64 - dmg (nightly)
1376+
# - Virus check arm64 - dmg (nightly)
1377+
# - Virus check MAS - pkg (nightly)
1378+
# - Virus check - exe (nightly)
13791379

13801380
# # e2e desktop tests on exe build
13811381
# - e2e-exe:

0 commit comments

Comments
 (0)