File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 9
9
@shellcheck -x bin/steps/hooks/*
10
10
11
11
test-staging :
12
- @echo " Running tests against staged binaries..."
12
+ @echo " Running tests against staged binaries (cedar-14)..."
13
+ @docker run -v $(shell pwd) :/buildpack:ro --rm -it -e " STACK=cedar-14" -e " TEST_STAGED_S3_BINARIES=1" heroku/cedar-14 bash -c ' cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
14
+ @echo " "
15
+ @echo " Running tests against staged binaries (heroku-16)..."
13
16
@docker run -v $(shell pwd) :/buildpack:ro --rm -it -e " STACK=heroku-16" -e " TEST_STAGED_S3_BINARIES=1" heroku/heroku:16-build bash -c ' cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
14
17
@echo " "
15
- @echo " Running tests in docker (heroku-18)..."
18
+ @echo " Running tests against staged binaries (heroku-18)..."
16
19
@docker run -v $(shell pwd) :/buildpack:ro --rm -it -e " STACK=heroku-18" -e " TEST_STAGED_S3_BINARIES=1" heroku/heroku:18-build bash -c ' cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
17
20
@echo " "
18
21
22
+ test-cedar-14 :
23
+ @echo " Running tests in docker (cedar-14)..."
24
+ @docker run -v $(shell pwd) :/buildpack:ro --rm -it -e " STACK=cedar-14" heroku/cedar-14 bash -c ' cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
25
+ @echo " "
26
+
19
27
test-heroku-16 :
20
28
@echo " Running tests in docker (heroku-16)..."
21
29
@docker run -v $(shell pwd) :/buildpack:ro --rm -it -e " STACK=heroku-16" heroku/heroku:16-build bash -c ' cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ ENV WORKSPACE_DIR="/app/builds" \
10
10
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
11
11
12
12
COPY requirements.txt /app/
13
- RUN pip install --disable-pip-version-check --no-cache-dir - r /app/requirements.txt
13
+ RUN pip install -r /app/requirements.txt
14
14
15
15
COPY . /app
You can’t perform that action at this time.
0 commit comments