Skip to content

Commit 86d69a8

Browse files
committed
added .github/workflows/ci_centos.yaml
1 parent dee2eb5 commit 86d69a8

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.github/workflows/ci_centos.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#
2+
# Author: Hari Sekhon
3+
# Date: Tue Feb 4 09:53:28 2020 +0000
4+
#
5+
# vim:ts=2:sts=2:sw=2:et
6+
#
7+
# https://github.com/harisekhon/devops-python-tools
8+
#
9+
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
10+
#
11+
# https://www.linkedin.com/in/harisekhon
12+
#
13+
14+
name: CI CentOS
15+
16+
env:
17+
DEBUG: 1
18+
19+
on:
20+
push:
21+
branches:
22+
- master
23+
schedule:
24+
# * is a special character in YAML so you have to quote this string
25+
- cron: '0 10 30 * *'
26+
27+
jobs:
28+
build:
29+
#name: build
30+
timeout-minutes: 10
31+
runs-on: ubuntu-latest
32+
container: harisekhon/centos-dev
33+
steps:
34+
# untars repo in docker container so git submodule update fails
35+
#- uses: actions/checkout@v2
36+
- name: build & test
37+
run: |
38+
ls -l /.dockerenv
39+
echo "pwd is $PWD"
40+
cat /etc/*release
41+
cd /tmp &&
42+
git clone https://github.com/harisekhon/devops-python-tools &&
43+
cd devops-python-tools &&
44+
make build test

0 commit comments

Comments
 (0)