Skip to content

Commit 9aef9db

Browse files
committed
#RI-6158 - Turn off auto run Unit tests
1 parent ffa934a commit 9aef9db

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/pipeline-build-macos.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,26 +86,26 @@ jobs:
8686
with:
8787
name: 'macos-x64-builds'
8888
path: |
89-
./release/Redis-Insight*x64.zip
9089
./release/Redis-Insight*x64.dmg
91-
./release/Redis-Insight*x64.dmg.blockmap
90+
# ./release/Redis-Insight*x64.zip
91+
# ./release/Redis-Insight*x64.dmg.blockmap
9292
9393
- name: Upload ARM packages
9494
uses: actions/[email protected]
9595
with:
9696
name: 'macos-arm-builds'
9797
path: |
98-
./release/Redis-Insight*arm64.zip
9998
./release/Redis-Insight*arm64.dmg
100-
./release/Redis-Insight*arm64.dmg.blockmap
99+
# ./release/Redis-Insight*arm64.zip
100+
# ./release/Redis-Insight*arm64.dmg.blockmap
101101
102102
- name: Upload MAS packages
103103
uses: actions/[email protected]
104104
with:
105105
name: 'macos-mas-builds'
106106
path: |
107107
./release/Redis-Insight*.pkg
108-
./release/*-mac.yml
108+
# ./release/*-mac.yml
109109
110110
- name: Upload redis stack packages
111111
uses: actions/[email protected]

.github/workflows/tests-frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_call:
44

55
env:
6-
SLACK_AUDIT_REPORT_KEY: ${secrets.SLACK_AUDIT_REPORT_KEY }}
6+
SLACK_AUDIT_REPORT_KEY: ${{ secrets.SLACK_AUDIT_REPORT_KEY }}
77

88
jobs:
99
unit-tests:

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Tests
22

33
on:
4-
push:
5-
branches-ignore:
6-
- main
4+
# push:
5+
# branches-ignore:
6+
# - main
77

88
workflow_dispatch:
99
inputs:
@@ -41,14 +41,14 @@ jobs:
4141
# TODO: concurrency
4242
# concurrency: build
4343
needs: changes
44-
if: ${{ needs.changes.outputs.frontend == 'true' || inputs.all-tests }}
44+
if: needs.changes.outputs.frontend == 'true' || inputs.all-tests
4545
uses: ./.github/workflows/tests-frontend.yml
4646
# secrets: inherit
4747

4848
backend-tests:
4949
# TODO: concurrency
5050
# concurrency: build
5151
needs: changes
52-
if: ${{ needs.changes.outputs.backend == 'true' || inputs.all-tests }}
52+
if: needs.changes.outputs.backend == 'true' || inputs.all-tests
5353
uses: ./.github/workflows/tests-backend.yml
5454
# secrets: inherit

0 commit comments

Comments
 (0)