Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 8b3eb42

Browse files
committed
check s2i build still works
1 parent a87cc46 commit 8b3eb42

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/s2i-build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: check s2i build
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
max-parallel: 4
9+
matrix:
10+
os: [ubuntu-latest]
11+
12+
runs-on: ${{ matrix.os }}
13+
14+
name: Integration Tests
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Install requirements
20+
run: |
21+
wget https://github.com/openshift/source-to-image/releases/download/v1.2.0/source-to-image-v1.2.0-2a579ecd-linux-amd64.tar.gz
22+
tar -xvf source-to-image-v1.2.0-2a579ecd-linux-amd64.tar.gz
23+
sudo cp s2i /usr/local/bin
24+
- name: Build image
25+
run: |
26+
s2i build . centos/python-36-centos7 cscfi/beacon-python

0 commit comments

Comments
 (0)