-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now that seastar has one, it's easy to depend on a travis ci build
- Loading branch information
Showing
13 changed files
with
148 additions
and
20 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,16 @@ | ||
dist: trusty | ||
sudo: required | ||
language: cpp | ||
compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-5 | ||
|
||
before_script: cd meta && source source_ansible_bash && travis_wait 30 ansible-playbook playbooks/devbox_all.yml | ||
|
||
script: | ||
- ./debug | ||
- ./release |
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
- name: install analysis deps | ||
become: yes | ||
dnf: | ||
package: | ||
name='{{item}}' | ||
with_items: | ||
- gnuplot | ||
|
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
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
--- | ||
|
||
# enable later when we finish the tests - american_fuzzy_lop | ||
|
||
- name: Install & build all development dependencies | ||
hosts: localhost | ||
roles: | ||
- compilation_tooling | ||
- american_fuzzy_lop | ||
- cpplint |
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 |
---|---|---|
|
@@ -2,15 +2,22 @@ DIR=$(git rev-parse --show-toplevel)/meta | |
if [[ -e ${DIR}/tmp/bin/activate ]]; then | ||
source ${DIR}/tmp/bin/activate | ||
else | ||
sudo dnf install -y \ | ||
python-devel \ | ||
python-pip \ | ||
libffi-devel \ | ||
openssl-devel \ | ||
redhat-rpm-config \ | ||
python-dnf \ | ||
libselinux-python | ||
|
||
if [[ $(which apt) != "" ]]; then | ||
sudo apt-get update | ||
sudo apt-get install -y \ | ||
software-properties-common \ | ||
python-dev \ | ||
python-pip | ||
else | ||
sudo dnf install -y \ | ||
python-devel \ | ||
python-pip \ | ||
libffi-devel \ | ||
openssl-devel \ | ||
redhat-rpm-config \ | ||
python-dnf \ | ||
libselinux-python | ||
fi | ||
sudo pip install pip --upgrade | ||
sudo pip install virtualenv | ||
echo "Creating work directory ${PWD}/tmp" | ||
|
@@ -25,9 +32,9 @@ fi | |
|
||
# check if git config stuff is set, ansible needs it | ||
if [[ $(git config --global user.email) == "" ]]; then | ||
git config --global user.email "[email protected]" | ||
git config --global user.email "[email protected]" | ||
fi | ||
|
||
if [[ $(git config --global user.name) == "" ]]; then | ||
git config --global user.name "commitbot" | ||
git config --global user.name "commitbot" | ||
fi |
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