Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
heroku-buildpack-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evili del Rio i Silvan
heroku-buildpack-python
Commits
6b5ec50a
Commit
6b5ec50a
authored
8 years ago
by
Kenneth Reitz
Browse files
Options
Downloads
Patches
Plain Diff
new travis matrix
parent
63810f29
No related branches found
Branches containing commit
Tags
v131
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.travis.yml
+5
-2
5 additions, 2 deletions
.travis.yml
tests.sh
+16
-0
16 additions, 0 deletions
tests.sh
with
21 additions
and
2 deletions
.travis.yml
+
5
−
2
View file @
6b5ec50a
...
...
@@ -2,5 +2,8 @@ language: bash
sudo
:
required
services
:
-
docker
install
:
docker pull heroku/cedar:14
script
:
make test
# install: docker pull heroku/cedar:14
script
:
./tests.sh
env
:
-
STACK=heroku-16
-
STACK=cedar-14
\ No newline at end of file
This diff is collapsed.
Click to expand it.
tests.sh
0 → 100755
+
16
−
0
View file @
6b5ec50a
#!/usr/bin/env sh
if
[[
!
"
$STACK
"
]]
;
then
echo
'$STACK must be set! (heroku-16 | cedar-14)'
exit
1
fi
if
[[
"
$STACK
"
==
"cedar-14"
]]
;
then
make test-cedar-14
exit
$?
fi
if
[[
"
$STACK
"
==
"heroku-16"
]]
;
then
make test-heroku-16
exit
$?
fi
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment