bash -> sh.
This commit is contained in:
parent
079dd3fe4c
commit
aad47d1741
2 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@ steps:
|
||||||
image: python:3.5-alpine3.9
|
image: python:3.5-alpine3.9
|
||||||
pull: always
|
pull: always
|
||||||
commands:
|
commands:
|
||||||
- bash scripts/run-tests
|
- sh scripts/run-tests
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: python-3-6-alpine-3-9
|
name: python-3-6-alpine-3-9
|
||||||
|
@ -17,7 +17,7 @@ steps:
|
||||||
image: python:3.6-alpine3.9
|
image: python:3.6-alpine3.9
|
||||||
pull: always
|
pull: always
|
||||||
commands:
|
commands:
|
||||||
- bash scripts/run-tests
|
- sh scripts/run-tests
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: python-3-7-alpine-3-9
|
name: python-3-7-alpine-3-9
|
||||||
|
@ -27,7 +27,7 @@ steps:
|
||||||
image: python:3.7-alpine3.9
|
image: python:3.7-alpine3.9
|
||||||
pull: always
|
pull: always
|
||||||
commands:
|
commands:
|
||||||
- bash scripts/run-tests
|
- sh scripts/run-tests
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: python-3-7-alpine-3-7
|
name: python-3-7-alpine-3-7
|
||||||
|
@ -37,4 +37,4 @@ steps:
|
||||||
image: python:3.7-alpine3.7
|
image: python:3.7-alpine3.7
|
||||||
pull: always
|
pull: always
|
||||||
commands:
|
commands:
|
||||||
- bash scripts/run-tests
|
- sh scripts/run-tests
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
|
||||||
# This script is intended to be run from the continuous integration build
|
# This script is intended to be run from the continuous integration build
|
||||||
# server, and not on a developer machine. For that, see:
|
# server, and not on a developer machine. For that, see:
|
||||||
|
|
Loading…
Reference in a new issue