From 2789be220bbfe06d560687026797e0ccc3e6fe9c Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Tue, 23 Mar 2021 13:28:43 -0400 Subject: [PATCH] Stop trying to build mattermost-redux in CI (#17206) --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6a56c850e5..c5e9e62a02 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,7 +28,7 @@ jobs: export WEBAPP_GIT_COMMIT=$(git rev-parse HEAD) echo "$WEBAPP_GIT_COMMIT" - trap 'npm ci && cd node_modules/mattermost-redux && npm i && npm run build && cd - && make build' ERR + trap 'npm ci && make build' ERR curl -f -o ./dist.tar.gz https://pr-builds.mattermost.com/mattermost-webapp/commit/${WEBAPP_GIT_COMMIT}/mattermost-webapp.tar.gz mkdir ./dist && tar -xvf ./dist.tar.gz -C ./dist --strip-components=1 trap - ERR