1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-21 17:37:01 +01:00

fix: do not run desktop prep build step on master (#18112)

This commit is contained in:
João Tavares 2023-03-13 11:42:01 +00:00 committed by GitHub
parent 5d5fa242c3
commit ba93b81182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,6 +55,9 @@ workflows:
requires:
- prep-deps
- prep-build-desktop:
filters:
branches:
ignore: master
requires:
- prep-deps
- prep-build-flask:
@ -137,6 +140,9 @@ workflows:
requires:
- trigger-beta-build
- validate-source-maps-desktop:
filters:
branches:
ignore: master
requires:
- prep-build-desktop
- validate-source-maps-flask:
@ -152,6 +158,9 @@ workflows:
- prep-deps
- trigger-beta-build
- test-mozilla-lint-desktop:
filters:
branches:
ignore: master
requires:
- prep-deps
- prep-build-desktop
@ -387,25 +396,9 @@ jobs:
- checkout
- attach_workspace:
at: .
- when:
condition:
not:
matches:
pattern: /^master$/
value: << pipeline.git.branch >>
steps:
- run:
name: build:dist
command: yarn build --build-type desktop dist
- when:
condition:
matches:
pattern: /^master$/
value: << pipeline.git.branch >>
steps:
- run:
name: build:prod
command: yarn build --build-type desktop prod
- run:
name: build:dist
command: yarn build --build-type desktop dist
- run:
name: build:debug
command: find dist/ -type f -exec md5sum {} \; | sort -k 2