|
|
|
# Javascript Node CircleCI 2.0 configuration file
|
|
|
|
#
|
|
|
|
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
|
|
|
|
#
|
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run:
|
|
|
|
name: Remix Libs Linting
|
|
|
|
command: npm run lint:libs
|
|
|
|
- run:
|
|
|
|
name: Remix IDE Linting
|
|
|
|
command: npm run lint
|
|
|
|
- run:
|
|
|
|
name: Remix IDE e2e Linting
|
|
|
|
command: npm run lint remix-ide-e2e
|
|
|
|
|
|
|
|
remix-libs:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npm run build:libs
|
|
|
|
- run: npm run test:libs
|
|
|
|
|
|
|
|
remix-ide-chrome-1:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
parallelism: 12
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npx nx build remix-ide --with-deps
|
|
|
|
- run:
|
|
|
|
name: Download Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone install --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
|
|
|
|
- run:
|
|
|
|
name: Start Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone start --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
|
|
|
|
background: true
|
|
|
|
- run: ./apps/remix-ide/ci/browser_tests_chrome_1.sh
|
|
|
|
- store_test_results:
|
|
|
|
path: ./reports/tests
|
|
|
|
- store_artifacts:
|
|
|
|
path: ./reports/screenshots
|
|
|
|
|
|
|
|
remix-ide-chrome-2:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
parallelism: 12
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npx nx build remix-ide --with-deps
|
|
|
|
- run:
|
|
|
|
name: Download Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone install --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
|
|
|
|
- run:
|
|
|
|
name: Start Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone start --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
|
|
|
|
background: true
|
|
|
|
- run: ./apps/remix-ide/ci/browser_tests_chrome_2.sh
|
|
|
|
- store_test_results:
|
|
|
|
path: ./reports/tests
|
|
|
|
- store_artifacts:
|
|
|
|
path: ./reports/screenshots
|
|
|
|
|
|
|
|
remix-ide-firefox-1:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
parallelism: 12
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npx nx build remix-ide --with-deps
|
|
|
|
- run:
|
|
|
|
name: Download Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide-e2e/seleniumConfig.js
|
|
|
|
- run:
|
|
|
|
name: Start Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide-e2e/seleniumConfig.js
|
|
|
|
background: true
|
|
|
|
- run: ./apps/remix-ide/ci/browser_tests_firefox_1.sh
|
|
|
|
- store_test_results:
|
|
|
|
path: ./reports/tests
|
|
|
|
- store_artifacts:
|
|
|
|
path: ./reports/screenshots
|
|
|
|
|
|
|
|
remix-ide-firefox-2:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
parallelism: 12
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npx nx build remix-ide --with-deps
|
|
|
|
- run:
|
|
|
|
name: Download Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide-e2e/seleniumConfig.js
|
|
|
|
- run:
|
|
|
|
name: Start Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide-e2e/seleniumConfig.js
|
|
|
|
background: true
|
|
|
|
- run: ./apps/remix-ide/ci/browser_tests_firefox_2.sh
|
|
|
|
- store_test_results:
|
|
|
|
path: ./reports/tests
|
|
|
|
- store_artifacts:
|
|
|
|
path: ./reports/screenshots
|
|
|
|
|
|
|
|
remix-ide-run-deploy:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
- FILES_TO_PACKAGE: "dist/apps/remix-ide/assets dist/apps/remix-ide/index.html dist/apps/remix-ide/main.js dist/apps/remix-ide/polyfills.js dist/apps/remix-ide/runtime.js dist/apps/remix-ide/vendor.js dist/apps/remix-ide/favicon.ico"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npx nx build remix-ide --with-deps
|
|
|
|
- run:
|
|
|
|
name: Download Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone install --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
|
|
|
|
- run:
|
|
|
|
name: Start Selenium
|
|
|
|
command: ./node_modules/.bin/selenium-standalone start --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
|
|
|
|
background: true
|
|
|
|
- run: ./apps/remix-ide/ci/browser_tests_run_deploy.sh
|
|
|
|
- store_test_results:
|
|
|
|
path: ./reports/tests
|
|
|
|
- store_artifacts:
|
|
|
|
path: ./reports/screenshots
|
|
|
|
|
|
|
|
|
|
|
|
deploy-remix-live:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
- FILES_TO_PACKAGE: "dist/apps/remix-ide/assets dist/apps/remix-ide/index.html dist/apps/remix-ide/main.js dist/apps/remix-ide/polyfills.js dist/apps/remix-ide/runtime.js dist/apps/remix-ide/vendor.js dist/apps/remix-ide/favicon.ico"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npx nx build remix-ide --with-deps
|
|
|
|
- run:
|
|
|
|
name: Deploy
|
|
|
|
command: |
|
|
|
|
if [ "${CIRCLE_BRANCH}" == "remix_live" ]; then
|
|
|
|
./apps/remix-ide/ci/deploy_from_travis_remix-live.sh;
|
|
|
|
fi
|
|
|
|
|
|
|
|
publish:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.19.0-buster
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
resource_class: xlarge
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
- FILES_TO_PACKAGE: "dist/apps/remix-ide/assets dist/apps/remix-ide/index.html dist/apps/remix-ide/main.js dist/apps/remix-ide/polyfills.js dist/apps/remix-ide/runtime.js dist/apps/remix-ide/vendor.js dist/apps/remix-ide/favicon.ico"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- setup_remote_docker
|
|
|
|
- run: npm install
|
|
|
|
- run: npx nx build remix-ide --with-deps
|
|
|
|
- run: ./apps/remix-ide/ci/copy_resources.sh
|
|
|
|
- run: ./apps/remix-ide/ci/publishIpfs
|
|
|
|
- run: ./apps/remix-ide/ci/build_and_publish_docker_images.sh
|
|
|
|
|
|
|
|
deploy-remix-alpha:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
resource_class: xlarge
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
- FILES_TO_PACKAGE: "dist/apps/remix-ide/assets dist/apps/remix-ide/index.html dist/apps/remix-ide/main.js dist/apps/remix-ide/polyfills.js dist/apps/remix-ide/runtime.js dist/apps/remix-ide/vendor.js dist/apps/remix-ide/favicon.ico"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npx nx build remix-ide --with-deps
|
|
|
|
- run:
|
|
|
|
name: Deploy
|
|
|
|
command: |
|
|
|
|
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
|
|
|
./apps/remix-ide/ci/deploy_from_travis_remix-alpha.sh;
|
|
|
|
fi
|
|
|
|
|
|
|
|
deploy-remix-beta:
|
|
|
|
docker:
|
|
|
|
# specify the version you desire here
|
|
|
|
- image: circleci/node:10.18.0-browsers
|
|
|
|
|
|
|
|
# Specify service dependencies here if necessary
|
|
|
|
# CircleCI maintains a library of pre-built images
|
|
|
|
resource_class: xlarge
|
|
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
|
|
# - image: circleci/mongo:3.4.4
|
|
|
|
environment:
|
|
|
|
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org"
|
|
|
|
- COMMIT_AUTHOR: "Circle CI"
|
|
|
|
- FILES_TO_PACKAGE: "dist/apps/remix-ide/assets dist/apps/remix-ide/index.html dist/apps/remix-ide/main.js dist/apps/remix-ide/polyfills.js dist/apps/remix-ide/runtime.js dist/apps/remix-ide/vendor.js dist/apps/remix-ide/favicon.ico"
|
|
|
|
working_directory: ~/remix-project
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: npm install
|
|
|
|
- run: npm run build:libs
|
|
|
|
- run: npm run build
|
|
|
|
- run:
|
|
|
|
name: Deploy
|
|
|
|
command: |
|
|
|
|
if [ "${CIRCLE_BRANCH}" == "remix_beta" ]; then
|
|
|
|
./apps/remix-ide/ci/deploy_from_travis_remix-beta.sh;
|
|
|
|
fi
|
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build_all:
|
|
|
|
jobs:
|
|
|
|
- lint
|
|
|
|
- remix-libs:
|
|
|
|
requires:
|
|
|
|
- lint
|
|
|
|
- remix-ide-chrome-1:
|
|
|
|
requires:
|
|
|
|
- lint
|
|
|
|
- remix-ide-chrome-2:
|
|
|
|
requires:
|
|
|
|
- lint
|
|
|
|
- remix-ide-firefox-1:
|
|
|
|
requires:
|
|
|
|
- lint
|
|
|
|
- remix-ide-firefox-2:
|
|
|
|
requires:
|
|
|
|
- lint
|
|
|
|
- remix-ide-run-deploy:
|
|
|
|
requires:
|
|
|
|
- lint
|
|
|
|
- publish:
|
|
|
|
requires:
|
|
|
|
- lint
|
|
|
|
- deploy-remix-live:
|
|
|
|
requires:
|
|
|
|
- remix-ide-chrome-1
|
|
|
|
- remix-ide-chrome-2
|
|
|
|
- remix-ide-firefox-1
|
|
|
|
- remix-ide-firefox-2
|
|
|
|
- remix-ide-run-deploy
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: remix_live
|
|
|
|
- deploy-remix-alpha:
|
|
|
|
requires:
|
|
|
|
- remix-ide-chrome-1
|
|
|
|
- remix-ide-chrome-2
|
|
|
|
- remix-ide-firefox-1
|
|
|
|
- remix-ide-firefox-2
|
|
|
|
- remix-ide-run-deploy
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: master
|
|
|
|
- deploy-remix-beta:
|
|
|
|
requires:
|
|
|
|
- remix-ide-chrome-1
|
|
|
|
- remix-ide-chrome-2
|
|
|
|
- remix-ide-firefox-1
|
|
|
|
- remix-ide-firefox-2
|
|
|
|
- remix-ide-run-deploy
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: remix_beta
|