diff options
| author | Kyrylo Silin <silin@kyrylo.org> | 2018-10-14 22:00:07 +0800 |
|---|---|---|
| committer | Kyrylo Silin <silin@kyrylo.org> | 2018-10-15 05:12:30 +0800 |
| commit | 720060fc2985495398a70abe075bfd3c79acf350 (patch) | |
| tree | 11ad0c083d002aadf6647153a5512c34ddde8d4f | |
| parent | bdd8a9aa8c29e91e6d0d869079d04190c301755d (diff) | |
| download | pry-720060fc2985495398a70abe075bfd3c79acf350.tar.gz | |
circle: install nano
The presense of supported text editor is required to make the test suite
pass. Specifically, the editor tests.
| -rw-r--r-- | .circleci/config.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index b0b545fb..fdb483b9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -61,6 +61,7 @@ jobs: steps: - <<: *repo_restore_cache - <<: *bundle_install + - <<: *install_alpine_nano - <<: *unit "ruby-2.0": docker: @@ -69,6 +70,7 @@ jobs: steps: - <<: *repo_restore_cache - <<: *bundle_install + - <<: *install_alpine_nano - <<: *unit "ruby-2.1": docker: @@ -77,6 +79,7 @@ jobs: steps: - <<: *repo_restore_cache - <<: *bundle_install + - <<: *install_ubuntu_nano - <<: *unit "ruby-2.2": docker: @@ -85,6 +88,7 @@ jobs: steps: - <<: *repo_restore_cache - <<: *bundle_install + - <<: *install_ubuntu_nano - <<: *unit "ruby-2.3": docker: @@ -93,6 +97,7 @@ jobs: steps: - <<: *repo_restore_cache - <<: *bundle_install + - <<: *install_ubuntu_nano - <<: *unit "ruby-2.4": docker: @@ -101,6 +106,7 @@ jobs: steps: - <<: *repo_restore_cache - <<: *bundle_install + - <<: *install_ubuntu_nano - <<: *unit "ruby-2.5": docker: @@ -109,6 +115,7 @@ jobs: steps: - <<: *repo_restore_cache - <<: *bundle_install + - <<: *install_ubuntu_nano - <<: *unit "jruby-9.2.0.0": docker: @@ -117,6 +124,7 @@ jobs: steps: - <<: *repo_restore_cache - <<: *bundle_install + - <<: *install_ubuntu_nano - <<: *unit workflows: |
