Skip to content

Commit f8971b6

Browse files
committed
change config to run on linux
1 parent 8aebade commit f8971b6

File tree

2 files changed

+23
-11
lines changed

2 files changed

+23
-11
lines changed

.circleci/config.yml

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -950,27 +950,39 @@ workflows:
950950
requires:
951951
- Start E2E Tests
952952
# build desktop app
953-
# - setup-sign-certificates:
954-
# name: Setup sign certificates (stage)
955-
# requires:
956-
# - Start E2E Tests
957-
# - setup-build:
958-
# name: Setup build (stage)
959-
# requires:
960-
# - Setup sign certificates (stage)
953+
- setup-sign-certificates:
954+
name: Setup sign certificates (stage)
955+
requires:
956+
- Start E2E Tests
957+
- setup-build:
958+
name: Setup build (stage)
959+
requires:
960+
- Setup sign certificates (stage)
961961
# - windows:
962962
# name: Build app - Windows (stage)
963963
# requires:
964964
# - Setup build (stage)
965+
- linux:
966+
name: Build app - Linux (stage)
967+
requires:
968+
- Setup build (stage)
965969
- e2e-tests:
966970
name: E2ETest
967971
build: docker
968-
parallelism: 4
972+
parallelism: 1
969973
requires:
970974
- Build docker image
975+
# e2e desktop tests on AppImage build
976+
- e2e-app-image:
977+
name: E2ETest (AppImage)
978+
parallelism: 1
979+
report: true
980+
requires:
981+
- Build app - Linux (stage)
982+
# e2e desktop tests on exe build
971983
# - e2e-exe:
972984
# name: E2ETest (exe)
973-
# parallelism: 1
985+
# parallelism: 4
974986
# report: true
975987
# requires:
976988
# - Build app - Windows (stage)

tests/e2e/tests/critical-path/workbench/index-schema.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fixture `Index Schema at Workbench`
2424
await workbenchPage.sendCommandInWorkbench(`FT.DROPINDEX ${indexName} DD`);
2525
await deleteStandaloneDatabaseApi(ossStandaloneRedisearch);
2626
});
27-
test
27+
test.only
2828
.meta({ env: env.desktop })('Verify that user can open results in Text and Table views for FT.INFO for Hash in Workbench', async t => {
2929
indexName = Common.generateWord(5);
3030
const commandsForSend = [

0 commit comments

Comments
 (0)