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: fix path
  • Loading branch information
amejiarosario committed May 8, 2019
commit 7c0d0897f90a689ba842a12fbe76b0935d901f2c
13 changes: 5 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,27 +58,24 @@ jobs: # a collection of steps
- run:
name: ruby version
command: ruby -v
- run:
name: go to directory
command: cd book/config

# Restore bundle cache
- restore_cache:
keys:
- ruby-{{ checksum "Gemfile.lock" }}
- ruby-{{ checksum "book/config/Gemfile.lock" }}
- ruby-
- run:
name: Bundle Install
command: bundle check || bundle install
command: cd book/config && bundle check || bundle install
# Store bundle cache
- save_cache:
key: ruby-{{ checksum "Gemfile.lock" }}
key: ruby-{{ checksum "book/config/Gemfile.lock" }}
paths:
- vendor/bundle
- book/config/vendor/bundle

- run:
name: generate PDF
command: make pdf
command: cd book/config && make pdf

workflows:
version: 2
Expand Down