Skip to content

Circle ci #12

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 28 commits into from
May 9, 2019
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
737b7ee
build(submodule): add submodule
amejiarosario May 8, 2019
f7fcd7e
build(submodule): bump commit
amejiarosario May 8, 2019
66a445d
chore(submodules): pull all submodules
amejiarosario May 8, 2019
29adcad
chore: bump subproject
amejiarosario May 8, 2019
1f69dc8
build(circleci): added config
amejiarosario May 8, 2019
957aa8c
build: remove travis-ci
amejiarosario May 8, 2019
7b7782d
build: add book creation
amejiarosario May 8, 2019
0389a4b
build: run 2 jobs
amejiarosario May 8, 2019
19ef4a5
build: fix fingerprint
amejiarosario May 8, 2019
7c0d089
build: fix path
amejiarosario May 8, 2019
689fd1a
build: fix mathematical issue
amejiarosario May 9, 2019
6b12e30
build: last try
amejiarosario May 9, 2019
5204fb2
build: cmake
amejiarosario May 9, 2019
4bdd5f4
build: GraphicsMagick
amejiarosario May 9, 2019
30b6c5f
build: software-properties-common
amejiarosario May 9, 2019
cc13f66
build: graphicsmagick fix
amejiarosario May 9, 2019
406fae7
build: fix links and images
amejiarosario May 9, 2019
47dbd64
no GraphicsMagick
amejiarosario May 9, 2019
732cf6f
install deps for GraphicsMagick
amejiarosario May 9, 2019
6a4dc4d
build: silent install
amejiarosario May 9, 2019
3a69aaa
artifacts
amejiarosario May 9, 2019
3540798
build: bundle exec
amejiarosario May 9, 2019
3ac9bde
build: artifacts path fix
amejiarosario May 9, 2019
0aa777a
build: set destination
amejiarosario May 9, 2019
47438eb
build: improve cache
amejiarosario May 9, 2019
4dc6e43
build: add parenthesis
amejiarosario May 9, 2019
efb2c7d
build: npm_package_version
amejiarosario May 9, 2019
ef7a0f3
build: shows node version
amejiarosario May 9, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build: add parenthesis
  • Loading branch information
amejiarosario committed May 9, 2019
commit 4dc6e4378ac68d16d6c9b9fde935d17bf1e30a46
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs: # a collection of steps

- run:
name: Bundle Install.pre - install mathematical for 'asciidoctor-mathematical' gem
command: cd book/config && bundle check --path vendor/bundle || sudo apt-get update && sudo apt-get -qq -y install cmake bison flex libffi-dev libxml2-dev libgdk-pixbuf2.0-dev libcairo2-dev libpango1.0-dev ttf-lyx
command: cd book/config && bundle check --path vendor/bundle || ( sudo apt-get update && sudo apt-get -qq -y install cmake bison flex libffi-dev libxml2-dev libgdk-pixbuf2.0-dev libcairo2-dev libpango1.0-dev ttf-lyx )

- run:
name: Bundle Install.pre - install GraphicsMagick for 'prawn-gmagick' gem
command: cd book/config && bundle check --path vendor/bundle || sudo apt-get -qq -y install graphicsmagick-imagemagick-compat graphicsmagick-libmagick-dev-compat
command: cd book/config && bundle check --path vendor/bundle || ( sudo apt-get -qq -y install graphicsmagick-imagemagick-compat graphicsmagick-libmagick-dev-compat )

- run:
name: Bundle Install
command: cd book/config && bundle check --path vendor/bundle || bundle install --path vendor/bundle
command: cd book/config && bundle check --path vendor/bundle || ( bundle install --path vendor/bundle )

# Store bundle cache
- save_cache:
Expand Down