2017-10-22 10:03:13 +08:00
|
|
|
|
matrix:
|
|
|
|
|
allow_failures:
|
|
|
|
|
- language: nix
|
|
|
|
|
fast_finish: true
|
|
|
|
|
include:
|
2018-02-09 13:40:58 +08:00
|
|
|
|
- env: DISPLAY=true USE_STACK_YAML="stack-8.0.yaml" # GHC 8.0.2
|
2017-10-22 10:03:13 +08:00
|
|
|
|
language: python
|
2019-02-08 11:51:27 -05:00
|
|
|
|
dist: xenial
|
2017-10-22 10:03:13 +08:00
|
|
|
|
# Test against different stack LTS versions.
|
|
|
|
|
|
|
|
|
|
# Choose a lightweight base image; we provide our own build tools.
|
|
|
|
|
python: "3.6"
|
|
|
|
|
|
|
|
|
|
# Enable caching.
|
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
|
|
# Caching so the next build will be fast too.
|
|
|
|
|
# These caches are the same between resolvers, but this is fine,
|
|
|
|
|
# as Stack differentiates between its resolvers.
|
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- $HOME/.ghc
|
|
|
|
|
- $HOME/.cabal
|
|
|
|
|
- $HOME/.stack
|
|
|
|
|
|
|
|
|
|
# Enable packages we need.
|
|
|
|
|
# Not all packages are available – see before_install for from-source builds.
|
|
|
|
|
addons:
|
|
|
|
|
apt:
|
|
|
|
|
packages:
|
|
|
|
|
- libmagic-dev # magic
|
|
|
|
|
- libgmp-dev # ghc
|
|
|
|
|
- libblas-dev # hmatrix
|
|
|
|
|
- liblapack-dev # hmatrix
|
|
|
|
|
- libcairo2-dev # cairo
|
|
|
|
|
- libpango1.0-dev # pango
|
2017-11-14 14:07:37 +08:00
|
|
|
|
- libzmq3-dev # zmq
|
2017-10-22 10:03:13 +08:00
|
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
|
# Download and unpack the stack executable
|
|
|
|
|
- export PATH=$HOME/.local/bin:$PATH
|
|
|
|
|
- mkdir -p ~/.local/bin
|
|
|
|
|
- curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
|
|
|
|
|
|
|
|
|
|
# Upgrades to avoid later build problems
|
|
|
|
|
- pip install -U pip
|
|
|
|
|
- pip install -U setuptools
|
|
|
|
|
|
2018-02-13 15:12:58 +08:00
|
|
|
|
# Install from requirements.txt
|
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
|
|
2017-10-22 10:03:13 +08:00
|
|
|
|
# This step takes the longest, and is what generates the Stack cache.
|
|
|
|
|
install:
|
|
|
|
|
- |
|
|
|
|
|
# Used to avoid 'source and destination file are the same' error
|
|
|
|
|
mv $USE_STACK_YAML intermediate-stack.yaml
|
|
|
|
|
mv intermediate-stack.yaml stack.yaml
|
|
|
|
|
|
|
|
|
|
echo "apply-ghc-options: everything" >> stack.yaml
|
|
|
|
|
|
|
|
|
|
- stack setup
|
|
|
|
|
- stack install gtk2hs-buildtools --fast
|
|
|
|
|
- stack build hmatrix --fast
|
|
|
|
|
- stack build --dependencies-only --fast
|
|
|
|
|
|
|
|
|
|
script:
|
|
|
|
|
- stack test --no-terminal --fast
|
|
|
|
|
- |
|
|
|
|
|
set -e
|
|
|
|
|
if $DISPLAY; then
|
|
|
|
|
TOP=$(pwd)
|
|
|
|
|
stack build --no-terminal --fast
|
|
|
|
|
|
|
|
|
|
# Ensure that ipython-kernel examples build successfully.
|
|
|
|
|
stack build ipython-kernel --flag ipython-kernel:examples --fast
|
|
|
|
|
|
|
|
|
|
# Ensure that IHaskell notebook remains unchanged.
|
|
|
|
|
# Run the notebook to regenerate the outputs, then compare the new notebook to the old one.
|
|
|
|
|
stack install --fast
|
|
|
|
|
stack exec -- ihaskell install --stack
|
2019-02-20 22:12:32 -05:00
|
|
|
|
stack exec -- jupyter nbconvert --to=notebook --execute --allow-errors --stdout notebooks/IHaskell.ipynb > ~/ihaskell-out.ipynb
|
2017-10-22 10:03:13 +08:00
|
|
|
|
|
|
|
|
|
# Images are rendered differently on different systems, so filter them out in the comparison
|
2018-09-11 12:29:16 -04:00
|
|
|
|
diff <(egrep -v 'image/png|version|pygments' ~/ihaskell-out.ipynb) <(egrep -v 'image/png|version|pygments' notebooks/IHaskell.ipynb)
|
2017-10-22 10:03:13 +08:00
|
|
|
|
fi
|
2018-10-22 19:26:56 -04:00
|
|
|
|
- env: DISPLAY=true USE_STACK_YAML="stack-8.2.yaml" # GHC 8.2.2
|
2017-10-22 10:03:13 +08:00
|
|
|
|
language: python
|
2019-02-08 11:51:27 -05:00
|
|
|
|
dist: xenial
|
2017-10-22 10:03:13 +08:00
|
|
|
|
# Test against different stack LTS versions.
|
|
|
|
|
|
|
|
|
|
# Choose a lightweight base image; we provide our own build tools.
|
|
|
|
|
python: "3.6"
|
|
|
|
|
|
|
|
|
|
# Enable caching.
|
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
|
|
# Caching so the next build will be fast too.
|
2018-03-16 16:24:21 +08:00
|
|
|
|
# These caches are the same between resolvers, but this is fine,
|
|
|
|
|
# as Stack differentiates between its resolvers.
|
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- $HOME/.ghc
|
|
|
|
|
- $HOME/.cabal
|
|
|
|
|
- $HOME/.stack
|
|
|
|
|
|
|
|
|
|
# Enable packages we need.
|
|
|
|
|
# Not all packages are available – see before_install for from-source builds.
|
|
|
|
|
addons:
|
|
|
|
|
apt:
|
|
|
|
|
packages:
|
|
|
|
|
- libmagic-dev # magic
|
|
|
|
|
- libgmp-dev # ghc
|
|
|
|
|
- libblas-dev # hmatrix
|
|
|
|
|
- liblapack-dev # hmatrix
|
|
|
|
|
- libcairo2-dev # cairo
|
|
|
|
|
- libpango1.0-dev # pango
|
|
|
|
|
- libzmq3-dev # zmq
|
|
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
|
# Download and unpack the stack executable
|
|
|
|
|
- export PATH=$HOME/.local/bin:$PATH
|
|
|
|
|
- mkdir -p ~/.local/bin
|
|
|
|
|
- curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
|
|
|
|
|
|
|
|
|
|
# Upgrades to avoid later build problems
|
|
|
|
|
- pip install -U pip
|
|
|
|
|
- pip install -U setuptools
|
|
|
|
|
|
|
|
|
|
# Install from requirements.txt
|
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
# This step takes the longest, and is what generates the Stack cache.
|
|
|
|
|
install:
|
|
|
|
|
- |
|
|
|
|
|
# Used to avoid 'source and destination file are the same' error
|
|
|
|
|
mv $USE_STACK_YAML intermediate-stack.yaml
|
|
|
|
|
mv intermediate-stack.yaml stack.yaml
|
|
|
|
|
|
|
|
|
|
echo "apply-ghc-options: everything" >> stack.yaml
|
|
|
|
|
|
|
|
|
|
- stack setup
|
|
|
|
|
- stack install gtk2hs-buildtools --fast
|
|
|
|
|
- stack build hmatrix --fast
|
|
|
|
|
- stack build --dependencies-only --fast
|
|
|
|
|
|
|
|
|
|
script:
|
|
|
|
|
- stack test --no-terminal --fast
|
|
|
|
|
- |
|
|
|
|
|
set -e
|
|
|
|
|
if $DISPLAY; then
|
|
|
|
|
TOP=$(pwd)
|
|
|
|
|
stack build --no-terminal --fast
|
|
|
|
|
|
|
|
|
|
# Ensure that ipython-kernel examples build successfully.
|
|
|
|
|
stack build ipython-kernel --flag ipython-kernel:examples --fast
|
|
|
|
|
|
|
|
|
|
# Ensure that IHaskell notebook remains unchanged.
|
|
|
|
|
# Run the notebook to regenerate the outputs, then compare the new notebook to the old one.
|
|
|
|
|
stack install --fast
|
|
|
|
|
stack exec -- ihaskell install --stack
|
2019-02-20 22:12:32 -05:00
|
|
|
|
stack exec -- jupyter nbconvert --to=notebook --execute --allow-errors --stdout notebooks/IHaskell.ipynb > ~/ihaskell-out.ipynb
|
2018-03-16 16:24:21 +08:00
|
|
|
|
|
|
|
|
|
# Images are rendered differently on different systems, so filter them out in the comparison
|
2018-09-11 12:29:16 -04:00
|
|
|
|
diff <(egrep -v 'image/png|version|pygments' ~/ihaskell-out.ipynb) <(egrep -v 'image/png|version|pygments' notebooks/IHaskell.ipynb)
|
2018-03-16 16:24:21 +08:00
|
|
|
|
fi
|
2019-01-04 22:41:45 -05:00
|
|
|
|
- env: DISPLAY=true USE_STACK_YAML="stack-8.4.yaml" # GHC 8.4.3
|
2018-03-16 16:24:21 +08:00
|
|
|
|
language: python
|
2019-02-08 11:51:27 -05:00
|
|
|
|
dist: xenial
|
2018-03-16 16:24:21 +08:00
|
|
|
|
# Test against different stack LTS versions.
|
|
|
|
|
|
|
|
|
|
# Choose a lightweight base image; we provide our own build tools.
|
|
|
|
|
python: "3.6"
|
|
|
|
|
|
|
|
|
|
# Enable caching.
|
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
|
|
# Caching so the next build will be fast too.
|
2017-10-22 10:03:13 +08:00
|
|
|
|
# These caches are the same between resolvers, but this is fine,
|
|
|
|
|
# as Stack differentiates between its resolvers.
|
2018-11-23 15:42:24 -05:00
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- $HOME/.ghc
|
|
|
|
|
- $HOME/.cabal
|
|
|
|
|
- $HOME/.stack
|
|
|
|
|
|
|
|
|
|
# Enable packages we need.
|
|
|
|
|
# Not all packages are available – see before_install for from-source builds.
|
|
|
|
|
addons:
|
|
|
|
|
apt:
|
|
|
|
|
packages:
|
|
|
|
|
- libmagic-dev # magic
|
|
|
|
|
- libgmp-dev # ghc
|
|
|
|
|
- libblas-dev # hmatrix
|
|
|
|
|
- liblapack-dev # hmatrix
|
|
|
|
|
- libcairo2-dev # cairo
|
|
|
|
|
- libpango1.0-dev # pango
|
|
|
|
|
- libzmq3-dev # zmq
|
|
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
|
# Download and unpack the stack executable
|
|
|
|
|
- export PATH=$HOME/.local/bin:$PATH
|
|
|
|
|
- mkdir -p ~/.local/bin
|
|
|
|
|
- curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
|
|
|
|
|
|
|
|
|
|
# Upgrades to avoid later build problems
|
|
|
|
|
- pip install -U pip
|
|
|
|
|
- pip install -U setuptools
|
|
|
|
|
|
|
|
|
|
# Install from requirements.txt
|
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
# This step takes the longest, and is what generates the Stack cache.
|
|
|
|
|
install:
|
|
|
|
|
- |
|
|
|
|
|
# Used to avoid 'source and destination file are the same' error
|
|
|
|
|
mv $USE_STACK_YAML intermediate-stack.yaml
|
|
|
|
|
mv intermediate-stack.yaml stack.yaml
|
|
|
|
|
|
|
|
|
|
echo "apply-ghc-options: everything" >> stack.yaml
|
|
|
|
|
|
|
|
|
|
- stack setup
|
|
|
|
|
# - stack install gtk2hs-buildtools --fast
|
|
|
|
|
- stack build hmatrix --fast
|
|
|
|
|
- stack build --dependencies-only --fast
|
|
|
|
|
|
|
|
|
|
script:
|
|
|
|
|
- stack test --no-terminal --fast
|
|
|
|
|
- |
|
|
|
|
|
set -e
|
|
|
|
|
if $DISPLAY; then
|
|
|
|
|
TOP=$(pwd)
|
|
|
|
|
stack build --no-terminal --fast
|
|
|
|
|
|
|
|
|
|
# Ensure that ipython-kernel examples build successfully.
|
|
|
|
|
stack build ipython-kernel --flag ipython-kernel:examples --fast
|
|
|
|
|
|
|
|
|
|
# Ensure that IHaskell notebook remains unchanged.
|
|
|
|
|
# Run the notebook to regenerate the outputs, then compare the new notebook to the old one.
|
|
|
|
|
stack install --fast
|
|
|
|
|
stack exec -- ihaskell install --stack
|
2019-02-20 22:12:32 -05:00
|
|
|
|
stack exec -- jupyter nbconvert --to=notebook --execute --allow-errors --stdout notebooks/IHaskell.ipynb > ~/ihaskell-out.ipynb
|
2018-11-23 15:42:24 -05:00
|
|
|
|
|
|
|
|
|
# Images are rendered differently on different systems, so filter them out in the comparison
|
|
|
|
|
diff <(egrep -v 'image/png|version|pygments' ~/ihaskell-out.ipynb) <(egrep -v 'image/png|version|pygments' notebooks/IHaskell.ipynb)
|
|
|
|
|
fi
|
2019-01-04 22:41:45 -05:00
|
|
|
|
- env: DISPLAY=false USE_STACK_YAML="stack.yaml" # GHC 8.6.3
|
2018-11-23 15:42:24 -05:00
|
|
|
|
language: python
|
2019-02-08 11:51:27 -05:00
|
|
|
|
dist: xenial
|
2018-11-23 15:42:24 -05:00
|
|
|
|
# Test against different stack LTS versions.
|
|
|
|
|
|
|
|
|
|
# Choose a lightweight base image; we provide our own build tools.
|
|
|
|
|
python: "3.6"
|
|
|
|
|
|
|
|
|
|
# Enable caching.
|
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
|
|
# Caching so the next build will be fast too.
|
|
|
|
|
# These caches are the same between resolvers, but this is fine,
|
|
|
|
|
# as Stack differentiates between its resolvers.
|
2017-10-22 10:03:13 +08:00
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- $HOME/.ghc
|
|
|
|
|
- $HOME/.cabal
|
|
|
|
|
- $HOME/.stack
|
|
|
|
|
|
|
|
|
|
# Enable packages we need.
|
|
|
|
|
# Not all packages are available – see before_install for from-source builds.
|
|
|
|
|
addons:
|
|
|
|
|
apt:
|
|
|
|
|
packages:
|
|
|
|
|
- libmagic-dev # magic
|
|
|
|
|
- libgmp-dev # ghc
|
|
|
|
|
- libblas-dev # hmatrix
|
|
|
|
|
- liblapack-dev # hmatrix
|
|
|
|
|
- libcairo2-dev # cairo
|
|
|
|
|
- libpango1.0-dev # pango
|
2017-11-14 14:07:37 +08:00
|
|
|
|
- libzmq3-dev # zmq
|
2017-10-22 10:03:13 +08:00
|
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
|
# Download and unpack the stack executable
|
|
|
|
|
- export PATH=$HOME/.local/bin:$PATH
|
|
|
|
|
- mkdir -p ~/.local/bin
|
|
|
|
|
- curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
|
|
|
|
|
|
|
|
|
|
# Upgrades to avoid later build problems
|
|
|
|
|
- pip install -U pip
|
|
|
|
|
- pip install -U setuptools
|
|
|
|
|
|
2018-02-13 15:12:58 +08:00
|
|
|
|
# Install from requirements.txt
|
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
|
|
2017-10-22 10:03:13 +08:00
|
|
|
|
# This step takes the longest, and is what generates the Stack cache.
|
|
|
|
|
install:
|
|
|
|
|
- |
|
|
|
|
|
# Used to avoid 'source and destination file are the same' error
|
|
|
|
|
mv $USE_STACK_YAML intermediate-stack.yaml
|
|
|
|
|
mv intermediate-stack.yaml stack.yaml
|
|
|
|
|
|
|
|
|
|
echo "apply-ghc-options: everything" >> stack.yaml
|
|
|
|
|
|
|
|
|
|
- stack setup
|
2018-03-16 17:24:37 +08:00
|
|
|
|
# - stack install gtk2hs-buildtools --fast
|
2017-10-22 10:03:13 +08:00
|
|
|
|
- stack build hmatrix --fast
|
|
|
|
|
- stack build --dependencies-only --fast
|
|
|
|
|
|
|
|
|
|
script:
|
|
|
|
|
- stack test --no-terminal --fast
|
|
|
|
|
- |
|
|
|
|
|
set -e
|
|
|
|
|
if $DISPLAY; then
|
|
|
|
|
TOP=$(pwd)
|
|
|
|
|
stack build --no-terminal --fast
|
|
|
|
|
|
|
|
|
|
# Ensure that ipython-kernel examples build successfully.
|
|
|
|
|
stack build ipython-kernel --flag ipython-kernel:examples --fast
|
|
|
|
|
|
|
|
|
|
# Ensure that IHaskell notebook remains unchanged.
|
|
|
|
|
# Run the notebook to regenerate the outputs, then compare the new notebook to the old one.
|
|
|
|
|
stack install --fast
|
|
|
|
|
stack exec -- ihaskell install --stack
|
2019-02-20 22:12:32 -05:00
|
|
|
|
stack exec -- jupyter nbconvert --to=notebook --execute --allow-errors --stdout notebooks/IHaskell.ipynb > ~/ihaskell-out.ipynb
|
2017-10-22 10:03:13 +08:00
|
|
|
|
|
|
|
|
|
# Images are rendered differently on different systems, so filter them out in the comparison
|
2018-09-11 12:29:16 -04:00
|
|
|
|
diff <(egrep -v 'image/png|version|pygments' ~/ihaskell-out.ipynb) <(egrep -v 'image/png|version|pygments' notebooks/IHaskell.ipynb)
|
2017-10-22 10:03:13 +08:00
|
|
|
|
fi
|
|
|
|
|
- language: nix
|
2019-02-08 11:51:27 -05:00
|
|
|
|
dist: xenial
|
2017-10-22 10:03:13 +08:00
|
|
|
|
env: RELEASE_NIX="release.nix"
|
2017-10-30 22:35:04 +08:00
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- /nix/store
|
2017-11-15 10:46:49 +08:00
|
|
|
|
timeout: 1000
|
2017-10-30 20:39:55 +08:00
|
|
|
|
install:
|
|
|
|
|
- export NIX_CONF_DIR=~
|
|
|
|
|
- echo "binary-caches = http://128.199.234.106:3000" >> $NIX_CONF_DIR/nix.conf
|
|
|
|
|
- echo "binary-cache-public-keys = 128.199.234.106:jzUyrIQHov5i6f94jQVriqPDLuPYlZPAsga3W3k+L8E=" >> $NIX_CONF_DIR/nix.conf
|
2017-12-13 20:41:35 +08:00
|
|
|
|
- nix-env -i curl jq
|
2017-11-02 20:29:44 +08:00
|
|
|
|
script:
|
|
|
|
|
- >
|
|
|
|
|
nix-build
|
2017-12-13 20:41:35 +08:00
|
|
|
|
-I nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/$(curl "https://api.github.com/repos/NixOS/nixpkgs-channels/branches/nixos-17.09" | jq -r '.commit.sha').tar.gz
|
2017-11-02 20:29:44 +08:00
|
|
|
|
$RELEASE_NIX
|
|
|
|
|
--arg packages '(p: with p; [
|
|
|
|
|
ihaskell-aeson
|
|
|
|
|
ihaskell-blaze
|
|
|
|
|
ihaskell-charts
|
|
|
|
|
ihaskell-diagrams
|
|
|
|
|
ihaskell-gnuplot
|
|
|
|
|
ihaskell-hatex
|
|
|
|
|
ihaskell-juicypixels
|
|
|
|
|
ihaskell-magic
|
|
|
|
|
ihaskell-plot
|
|
|
|
|
ihaskell-static-canvas
|
|
|
|
|
])'
|
2019-02-20 22:12:32 -05:00
|
|
|
|
- result/bin/ihaskell-nbconvert --to=notebook --execute --allow-errors --stdout notebooks/IHaskell.ipynb > ~/ihaskell-out.ipynb
|
2018-09-11 12:29:16 -04:00
|
|
|
|
- diff <(egrep -v 'image/png|version|pygments' ~/ihaskell-out.ipynb) <(egrep -v 'image/png|version|pygments' notebooks/IHaskell.ipynb)
|
2017-10-22 10:03:13 +08:00
|
|
|
|
- language: nix
|
2019-02-08 11:51:27 -05:00
|
|
|
|
dist: xenial
|
2017-10-22 10:03:13 +08:00
|
|
|
|
env: RELEASE_NIX="release-8.2.nix"
|
2017-10-30 22:35:04 +08:00
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- /nix/store
|
2017-11-15 10:46:49 +08:00
|
|
|
|
timeout: 1000
|
2017-10-30 20:39:55 +08:00
|
|
|
|
install:
|
|
|
|
|
- export NIX_CONF_DIR=~
|
|
|
|
|
- echo "binary-caches = http://128.199.234.106:3000" >> $NIX_CONF_DIR/nix.conf
|
|
|
|
|
- echo "binary-cache-public-keys = 128.199.234.106:jzUyrIQHov5i6f94jQVriqPDLuPYlZPAsga3W3k+L8E=" >> $NIX_CONF_DIR/nix.conf
|
2017-12-13 20:41:35 +08:00
|
|
|
|
- nix-env -i curl jq
|
2017-11-02 20:29:44 +08:00
|
|
|
|
script:
|
|
|
|
|
- >
|
|
|
|
|
nix-build
|
2017-12-13 20:41:35 +08:00
|
|
|
|
-I nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/$(curl "https://api.github.com/repos/NixOS/nixpkgs-channels/branches/nixos-17.09" | jq -r '.commit.sha').tar.gz
|
2017-11-02 20:29:44 +08:00
|
|
|
|
$RELEASE_NIX
|
|
|
|
|
--arg packages '(p: with p; [
|
|
|
|
|
ihaskell-aeson
|
|
|
|
|
ihaskell-blaze
|
|
|
|
|
ihaskell-charts
|
|
|
|
|
ihaskell-diagrams
|
|
|
|
|
ihaskell-gnuplot
|
|
|
|
|
ihaskell-hatex
|
|
|
|
|
ihaskell-juicypixels
|
|
|
|
|
ihaskell-magic
|
|
|
|
|
ihaskell-plot
|
|
|
|
|
ihaskell-static-canvas
|
|
|
|
|
])'
|
2019-02-20 22:12:32 -05:00
|
|
|
|
- result/bin/ihaskell-nbconvert --to=notebook --execute --allow-errors --stdout notebooks/IHaskell.ipynb > ~/ihaskell-out.ipynb
|
2018-09-11 12:29:16 -04:00
|
|
|
|
- diff <(egrep -v 'image/png|version|pygments' ~/ihaskell-out.ipynb) <(egrep -v 'image/png|version|pygments' notebooks/IHaskell.ipynb)
|