pyodide/.circleci/config.yml

90 lines
2.8 KiB
YAML
Raw Normal View History

2018-06-01 13:07:15 +00:00
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6.5-stretch-browsers
working_directory: ~/repo
steps:
- checkout
- run:
name: dependencies
command: |
# We need at least g++-8, but stretch comes with g++-6
# Set up the Debian testing repo, and then install g++ from there...
sudo bash -c "echo \"deb http://ftp.us.debian.org/debian testing main contrib non-free\" >> /etc/apt/sources.list"
sudo apt-get update
2018-07-23 21:19:47 +00:00
sudo apt-get install node-less cmake build-essential clang-format-6.0 flake8 uglifyjs python3-yaml chromium ccache
2018-06-01 13:07:15 +00:00
sudo apt-get install -t testing g++-8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80 --slave /usr/bin/g++ g++ /usr/bin/g++-8
sudo update-alternatives --set gcc /usr/bin/gcc-8
2018-06-20 21:47:07 +00:00
sudo pip install pytest-xdist selenium PyYAML
2018-06-01 13:07:15 +00:00
# Get recent version of Firefox and geckodriver
wget -O firefox.tar.bz2 https://download.mozilla.org/\?product\=firefox-nightly-latest-ssl\&os\=linux64\&lang\=en-US
tar jxf firefox.tar.bz2
wget https://github.com/mozilla/geckodriver/releases/download/v0.20.1/geckodriver-v0.20.1-linux64.tar.gz
tar zxf geckodriver-v0.20.1-linux64.tar.gz -C firefox
2018-07-10 13:38:23 +00:00
# Get recent version of chromedriver
2018-07-09 19:09:49 +00:00
wget https://chromedriver.storage.googleapis.com/2.40/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
mv chromedriver firefox
2018-06-01 13:07:15 +00:00
# This Debian is so old, it doesn't know about wasm as a mime type, which then
# causes Firefox to complain when loading it. Let's just add the new mime type.
sudo bash -c "echo 'application/wasm wasm' >> /etc/mime.types"
2018-06-14 18:19:08 +00:00
- run:
name: lint
command: |
make lint
2018-06-01 13:07:15 +00:00
- restore_cache:
keys:
2018-07-23 21:19:47 +00:00
- v1-emsdk-{{ checksum "emsdk/Makefile" }}-v5
2018-06-01 13:07:15 +00:00
- run:
name: build
no_output_timeout: 1200
command: |
make
- save_cache:
paths:
- ./emsdk/emsdk
2018-07-23 21:19:47 +00:00
- $HOME/.ccache
2018-07-11 12:24:45 +00:00
key: v1-emsdk-{{ checksum "emsdk/Makefile" }}-v4
2018-06-01 13:07:15 +00:00
- run:
name: test
command: |
export PATH=$PWD/firefox:$PATH
make test
2018-06-19 17:36:14 +00:00
deploy:
machine:
enabled: true
steps:
- run:
name: Deploy to Github Pages
command: |
2018-06-20 12:10:30 +00:00
echo foo
2018-06-19 17:36:14 +00:00
workflows:
version: 2
build-and-deploy:
jobs:
- build
- deploy:
requires:
- build
filters:
branches:
only: master