Skip to content
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

Explicitly install deps to fix CI build #138

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Explicitly install deps to fix CI build

The logs at https://travis-ci.org/servo/saltfs/jobs/87759990, specifically

    The following packages have unmet dependencies:
     salt-minion : Depends: salt-common (= 2015.5.3+ds-1precise2) but it is not going to be installed
                   Depends: python-zmq (>= 13.0.0) but it is not going to be installed
                   Recommends: dmidecode but it is not going to be installed
    E: Unable to correct problems, you have held broken packages.
    The command ".travis/install_salt" failed and exited with 100 during .
    Your build has been stopped.

make me think that having those packages available on the system will allow the
build to continue. Maybe.
  • Loading branch information
edunham committed Oct 27, 2015
commit 337dddc891eb76479fb1135273f4335c01c842a1
@@ -5,7 +5,7 @@ python:
before_install:
- sudo add-apt-repository -y ppa:saltstack/salt
- sudo apt-get update
- sudo apt-get install salt-master salt-minion
- sudo apt-get install salt-common python-zmq dmidecode salt-master salt-minion
- sudo mkdir -p /srv/salt/states
- sudo cp .travis/minion /etc/salt/minion

@@ -15,7 +15,6 @@ install:
- sudo cp .travis/minion /etc/salt/minion
- sudo service salt-minion restart


# Additional debug help. May fail if run before Salt finishes restarting.
# - sudo cat /var/log/salt/*

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.