Skip to content

Commit b378ba4

Browse files
committed
#RI-3478 - not build plugins for licenses check
1 parent 2dfb38c commit b378ba4

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.circleci/config.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ jobs:
814814
# Install plugins dependencies
815815
export pluginsOnlyInstall=1
816816
# yarn build:statics
817-
sh ./scripts/build-statics.sh
817+
bash ./scripts/build-statics.sh
818818
- run:
819819
name: Generate licenses csv files and send csv data to google sheet
820820
command: |
@@ -1076,6 +1076,8 @@ workflows:
10761076
# Workflow for feature, bugfix, main branches
10771077
feature-main-branch:
10781078
jobs:
1079+
- licenses-check:
1080+
name: Process licenses of packages
10791081
# Approve to run all (unit, integration, e2e) tests
10801082
- approve:
10811083
name: Start All Tests
@@ -1146,10 +1148,6 @@ workflows:
11461148
env: dev
11471149
requires:
11481150
- Setup sign certificates (dev)
1149-
- licenses-check:
1150-
name: Process licenses of packages
1151-
requires: &devBuildRequire
1152-
- Setup build (dev)
11531151
- linux:
11541152
name: Build app - Linux (dev)
11551153
env: dev

scripts/build-statics.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
echo $pluginsOnlyInstall
55

6-
if [ "$pluginsOnlyInstall" == "1" ]; then
6+
if [ $pluginsOnlyInstall == 1 ]; then
77
exit 1
88
fi
99

0 commit comments

Comments
 (0)