-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: francois samin <francois.samin@corp.ovh.com>
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
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,15 @@ | ||
tasks: | ||
- init: |- | ||
ssh-keygen -t rsa -q -f "$HOME/.ssh/id_rsa" -N "" && \ | ||
wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ | ||
sudo tar xvjf phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /usr/local/share/ && \ | ||
sudo ln -s /usr/local/share/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/local/bin/ && \ | ||
phantomjs --version && \ | ||
make test && \ | ||
make build OS=linux ARCH=amd64 && \ | ||
cp dist/venom.linux-amd64 tests/venom && \ | ||
cd tests && \ | ||
make start-test-stack && sleep 10 && \ | ||
make build-test-binary-docker | ||
command: make run-test | ||
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