-
Notifications
You must be signed in to change notification settings - Fork 694
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add xlsx-validator to travis build matrix
- Loading branch information
Hörður Freyr Yngvason
committed
Apr 1, 2017
1 parent
977c09d
commit 18263b4
Showing
5 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.git | ||
.bundle | ||
vendor | ||
ci/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# vim: set ft=Dockerfile | ||
|
||
FROM vindvaki/xlsx-validator | ||
|
||
RUN apt-get install -y build-essential ruby ruby-dev libxslt-dev libxml2-dev zlib1g-dev | ||
RUN gem install bundler | ||
ADD Gemfile Gemfile.lock axlsx.gemspec /app/axlsx/ | ||
WORKDIR /app/axlsx/ | ||
ADD lib/axlsx/version.rb lib/axlsx/version.rb | ||
RUN bundle install | ||
ADD . . | ||
|
||
ADD ci/validate-xlsx-files.sh . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
bundle exec ruby examples/example.rb | ||
xlsx-validator *.xlsx |