Skip to content

Commit a9b9a36

Browse files
committed
Fixing workflows
1 parent d324a93 commit a9b9a36

File tree

2 files changed

+16
-36
lines changed

2 files changed

+16
-36
lines changed

.github/workflows/ci_check_image.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/ci_checks.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ on:
99
workflow_dispatch:
1010

1111
jobs:
12-
test-python36:
13-
uses: vikinganalytics/daeploy-s2i-python/.github/workflows/ci_check_image.yml@more-python-versions
14-
with:
15-
imagename: python36-slim
16-
test-python37:
17-
uses: vikinganalytics/daeploy-s2i-python/.github/workflows/ci_check_image.yml@more-python-versions
18-
with:
19-
imagename: python37-slim
20-
test-python38:
21-
uses: vikinganalytics/daeploy-s2i-python/.github/workflows/ci_check_image.yml@more-python-versions
22-
with:
23-
imagename: python38-slim
24-
test-python39:
25-
uses: vikinganalytics/daeploy-s2i-python/.github/workflows/ci_check_image.yml@more-python-versions
26-
with:
27-
imagename: python39-slim
12+
test-s2i-builder-image:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: "Install s2i"
17+
run: |
18+
wget -c https://github.com/openshift/source-to-image/releases/download/v1.3.0/source-to-image-v1.3.0-eed2850f-linux-amd64.tar.gz -O - | tar -xz
19+
sudo cp s2i /usr/local/bin
20+
- name: Test python 3.6 image
21+
run: make test -C python36-slim/
22+
- name: Test python 3.7 image
23+
run: make test -C python37-slim/
24+
- name: Test python 3.8 image
25+
run: make test -C python38-slim/
26+
- name: Test python 3.9 image
27+
run: make test -C python39-slim/

0 commit comments

Comments
 (0)