Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use new CircleCI images #12450

Merged
merged 3 commits into from Dec 9, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 14 additions & 3 deletions .circleci/config.yml
Expand Up @@ -30,12 +30,17 @@ aliases:
executors:
node-executor:
docker:
- image: circleci/node:latest
- image: cimg/node:current
working_directory: ~/babel
# e2e-vue-cli test requires chromium
node-browsers-executor:
docker:
- image: circleci/node:latest-browsers
- image: cimg/node:current-browsers
working_directory: ~/babel
# e2e-jest test requires python
node-python-executor:
docker:
- image: cimg/python:3.9-node
working_directory: ~/babel

jobs:
Expand Down Expand Up @@ -153,10 +158,16 @@ jobs:
- checkout
- attach_workspace:
at: /tmp/verdaccio-workspace
- run:
# vue-cli uses puppeteer
# Copied from https://circleci.com/developer/orbs/orb/threetreeslight/puppeteer
name: Install Headless Chrome dependencies
command: |
sudo apt-get install -yq libxss1
nicolo-ribaudo marked this conversation as resolved.
Show resolved Hide resolved
- run: ./scripts/integration-tests/e2e-vue-cli.sh

e2e-jest:
executor: node-executor
executor: node-python-executor
steps:
- checkout
- attach_workspace:
Expand Down