8000 Use cimg/node instead of circleci/node by birkskyum · Pull Request #7080 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Use cimg/node instead of circleci/node #7080

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

Merged
merged 15 commits into from
Aug 12, 2024
Prev Previous commit
cleanup
  • Loading branch information
birkskyum committed Aug 12, 2024
commit 3293402f57de69f1db38e283f3f353197440b3a8
46 changes: 1 addition & 45 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,44 +174,6 @@ jobs:
name: Run jasmine tests (part D)
command: .circleci/test.sh bundle-jasmine

mathjax-firefox101:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: cimg/node:16.20.2-browsers
environment:
# Alaska time (arbitrary timezone to test date logic)
TZ: "America/Anchorage"
working_directory: ~/plotly.js
steps:
- browser-tools/install-browser-tools: &browser-versions
firefox-version: "101.0"
install-chrome: false
install-chromedriver: false
- attach_workspace:
at: ~/
- run:
name: Test MathJax on firefox-101
command: .circleci/test.sh mathjax-firefox

mathjax-firefox102:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: cimg/node:16.20.2-browsers
environment:
# Alaska time (arbitrary timezone to test date logic)
TZ: "America/Anchorage"
working_directory: ~/plotly.js
steps:
- browser-tools/install-browser-tools: &browser-versions
firefox-version: "102.0"
install-chrome: false
install-chromedriver: false
- attach_workspace:
at: ~/
- run:
name: Test MathJax on firefox-102
command: .circleci/test.sh mathjax-firefox102+

mathjax-firefoxLatest:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
Expand All @@ -228,7 +190,7 @@ jobs:
at: ~/
- run:
name: Test MathJax on firefox-latest
command: .circleci/test.sh mathjax-firefox102+
command: .circleci/test.sh mathjax-firefox

make-baselines-virtual-webgl:
parallelism: 8
Expand Down Expand Up @@ -525,12 +487,6 @@ workflows:
- bundle-jasmine:
requires:
- install-and-cibuild
- mathjax-firefox101:
requires:
- install-and-cibuild
- mathjax-firefox102:
requires:
- install-and-cibuild
- mathjax-firefoxLatest:
requires:
- install-and-cibuild
Expand Down
2 changes: 1 addition & 1 deletion .circleci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ case $1 in
exit $EXIT_STATE
;;

mathjax-firefox102+)
mathjax-firefox)
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax --nowatch &&
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax --mathjax3 --nowatch &&
./node_modules/karma/bin/karma start test/jasmine/karma.conf.js --FF --bundleTest=mathjax_config --mathjax3 --nowatch &&
Expand Down
0