Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Add reviewers for the most sensitive folders
/.github/ viktar.starastsenka@redis.com artem.horuzhenko@redis.com kristiyan.ivanov@redis.com pavel.angelov@redis.com petar.dzhambazov@redis.com
/.circleci/ viktar.starastsenka@redis.com artem.horuzhenko@redis.com kristiyan.ivanov@redis.com pavel.angelov@redis.com petar.dzhambazov@redis.com
/redisinsight/api/config/features-config.json viktar.starastsenka@redis.com artem.horuzhenko@redis.com kristiyan.ivanov@redis.com pavel.angelov@redis.com petar.dzhambazov@redis.com
/.github/ viktar.starastsenka@redis.com egor.zalenski@softeq.com artem.horuzhenko@redis.com
/.circleci/ viktar.starastsenka@redis.com egor.zalenski@softeq.com artem.horuzhenko@redis.com
/redisinsight/api/config/features-config.json viktar.starastsenka@redis.com egor.zalenski@softeq.com artem.horuzhenko@redis.com
13 changes: 0 additions & 13 deletions .github/workflows/aws-upload-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,6 @@ jobs:
aws s3 cp release/ s3://${AWS_BUCKET_NAME_TEST}/public/upgrades --recursive
aws s3 cp release/ s3://${AWS_BUCKET_NAME_TEST}/public/pre-release/${APP_VERSION} --recursive

- name: Download vendor plugins
uses: actions/download-artifact@v4
id: download-vendor
continue-on-error: true
with:
name: 'vendor-plugins'
path: vendor

- name: Upload vendor plugins to s3 bucket
if: steps.download-vendor.outcome == 'success'
run: |
aws s3 cp vendor/ s3://${AWS_BUCKET_NAME_TEST}/public/plugins/static/ --recursive

- name: Generate job summary
run: |
node ./.github/generate-build-summary.js
Expand Down
139 changes: 0 additions & 139 deletions .github/workflows/nightly-virustotal-analyze.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/pipeline-build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,6 @@ jobs:
yarn package:stage --linux $target
fi

- uses: actions/upload-artifact@v4
name: Upload vendor for plugins
with:
name: vendor-plugins
path: |
./vendor

- uses: actions/upload-artifact@v4
name: Upload linux builds
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-e2e-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
fail-fast: false
matrix:
# Number of threads to run tests
parallel: [0, 1, 2, 3]
parallel: [0, 1, 2, 3, 4, 5]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Generate short list of the test files
working-directory: ./tests/e2e
run: |
testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 4 == ${{ matrix.parallel }}")
testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 6 == ${{ matrix.parallel }}")

echo $testFiles

Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ on:
branches:
- 'fe/**'
- 'be/**'
- 'fe-be/**'
- 'e2e/**'
- 'feature/**'
- 'bugfix/**'

workflow_dispatch:
inputs:
Expand Down Expand Up @@ -44,7 +41,7 @@ on:
group_tests:
description: Run group of tests
type: string
default: 'without_e2e'
default: 'all'
short_rte_list:
description: Use short rte list
type: boolean
Expand Down Expand Up @@ -89,19 +86,19 @@ jobs:

frontend-tests:
needs: changes
if: inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'fe/') || startsWith(github.ref_name, 'fe-be/') || startsWith(github.ref_name, 'feature/') || startsWith(github.ref_name, 'bugfix/')
if: inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'fe/')
uses: ./.github/workflows/tests-frontend.yml
secrets: inherit

backend-tests:
needs: changes
if: inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'be/') || startsWith(github.ref_name, 'fe-be/') || startsWith(github.ref_name, 'feature/') || startsWith(github.ref_name, 'bugfix/')
if: inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'be/')
uses: ./.github/workflows/tests-backend.yml
secrets: inherit

integration-tests:
needs: changes
if: inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'be/') || startsWith(github.ref_name, 'fe-be/') || startsWith(github.ref_name, 'feature/') || startsWith(github.ref_name, 'bugfix/')
if: inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'be/')
uses: ./.github/workflows/tests-integration.yml
secrets: inherit
with:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ vendor
redisinsight/main.js.LICENSE.txt
redisinsight/main.prod.js.LICENSE.txt
licenses
redisinsight/ui/src/packages/common/index*


# E2E tests report
Expand Down
Loading