From 5434d8d3a547542b1f91ea1c07f845e2b9e2477a Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Tue, 10 Nov 2020 12:48:04 -0330 Subject: [PATCH] Temporarily disable sesify viz step (#9841) The sesify viz step of the build was broken in #9838 when `eth-rpc-errors@4` was introduced to the project. `eth-rpc-errors@4` uses inline sourcemaps without including the full source in the sourcemap, which breaks `sesify`. `sesify` has been fixed[1] (under its new name, `lavamoat-browserify`), but it has been disabled temporarily until this fix is included in a new release, and until we can update to use it. [1]: https://github.com/LavaMoat/LavaMoat/pull/121 --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index de5455c9e..f018b76bd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -309,9 +309,11 @@ jobs: path: test-artifacts destination: test-artifacts # important: generate sesify viz AFTER uploading builds as artifacts - - run: - name: build:sesify-viz - command: ./.circleci/scripts/create-sesify-viz + # Temporarily disabled until we can update to a version of `sesify` with + # this fix included: https://github.com/LavaMoat/LavaMoat/pull/121 + # - run: + # name: build:sesify-viz + # command: ./.circleci/scripts/create-sesify-viz - store_artifacts: path: build-artifacts destination: build-artifacts