Skip to content

Commit 65f44e2

Browse files
committed
updated centos6.yaml
1 parent f3d23a0 commit 65f44e2

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/centos6.yaml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,21 @@ jobs:
3333
steps:
3434
# untars repo in docker container so git submodule update fails
3535
#- uses: actions/checkout@v2
36-
- name: build & test
36+
- name: install git & make
3737
run: |
3838
ls -l /.dockerenv
3939
echo "pwd is $PWD"
4040
cat /etc/*release
41-
yum install -y git make &&
41+
yum install -y git make
42+
- name: git clone
43+
run: |
4244
cd /tmp &&
43-
git clone https://github.com/harisekhon/devops-python-tools &&
44-
cd devops-python-tools &&
45-
make build test
45+
git clone https://github.com/harisekhon/devops-python-tools
46+
- name: build
47+
run: |
48+
cd /tmp/devops-python-tools &&
49+
make
50+
- name: test
51+
run: |
52+
cd /tmp/devops-python-tools &&
53+
make test

0 commit comments

Comments
 (0)