Merge pull request #541 from tahoe-lafs/2961.circleci-slackware.14-2

Fix CircleCI Slackware 14.2 job

Fixes: ticket:2961
This commit is contained in:
Jean-Paul Calderone 2019-01-25 18:51:33 -05:00 committed by GitHub
commit b88f166018
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -341,7 +341,14 @@ jobs:
name: "Install Git"
command: |
slackpkg update
slackpkg install openssh-7.4p1 git-2.14.4 </dev/null
# Be careful with slackpkg. If the package name given doesn't
# match anything, slackpkg still claims to succeed but you're
# totally screwed. Slackware updates versions of packaged
# software so including too much version prefix is a good way to
# have your install commands suddenly begin not installing
# anything.
slackpkg install openssh-7 git-2 </dev/null
- "checkout"

1
newsfragments/2961.other Normal file
View File

@ -0,0 +1 @@
Some Slackware 14.2 continuous integration problems have been resolved.