Skip to content

Commit c8076a4

Browse files
committed
sync'd CI builds
1 parent 3a6d75a commit c8076a4

19 files changed

Lines changed: 108 additions & 207 deletions

.github/workflows/alpine.yaml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
apk add --no-cache git make
39+
run: apk add --no-cache git make
4440
- name: git clone
45-
run: |
46-
cd /tmp &&
47-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4844
- name: build
49-
run: |
50-
cd "/tmp/$repo" &&
51-
make
45+
run: cd "/tmp/$repo" && make ci
5246
- name: test
53-
run: |
54-
cd "/tmp/$repo" &&
55-
make test
47+
run: cd "/tmp/$repo" && make test

.github/workflows/alpine_3.yaml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
apk add --no-cache git make
39+
run: apk add --no-cache git make
4440
- name: git clone
45-
run: |
46-
cd /tmp &&
47-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4844
- name: build
49-
run: |
50-
cd "/tmp/$repo" &&
51-
make
45+
run: cd "/tmp/$repo" && make ci
5246
- name: test
53-
run: |
54-
cd "/tmp/$repo" &&
55-
make test
47+
run: cd "/tmp/$repo" && make test

.github/workflows/centos.yaml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
yum install -y git make
39+
run: yum install -y git make
4440
- name: git clone
45-
run: |
46-
cd /tmp &&
47-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4844
- name: build
49-
run: |
50-
cd "/tmp/$repo" &&
51-
make
45+
run: cd "/tmp/$repo" && make ci
5246
- name: test
53-
run: |
54-
cd "/tmp/$repo" &&
55-
make test
47+
run: cd "/tmp/$repo" && make test

.github/workflows/centos6.yaml.disabled

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,12 @@ jobs:
3838
# untars repo in docker container so git submodule update fails
3939
#- uses: actions/checkout@v2
4040
- name: install git & make
41-
run: |
42-
ls -l /.dockerenv
43-
echo "pwd is $PWD"
44-
cat /etc/*release
45-
yum install -y git make
41+
run: yum install -y git make
4642
- name: git clone
47-
run: |
48-
cd /tmp &&
49-
git clone "https://github.com/harisekhon/$repo"
43+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
44+
- name: init
45+
run: cd "/tmp/$repo" && git submodule update --init --recursive
5046
- name: build
51-
run: |
52-
cd "/tmp/$repo" &&
53-
make
47+
run: cd "/tmp/$repo" && make ci
5448
- name: test
55-
run: |
56-
cd "/tmp/$repo" &&
57-
make test
49+
run: cd "/tmp/$repo" && make test

.github/workflows/centos7.yaml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
yum install -y git make
39+
run: yum install -y git make
4440
- name: git clone
45-
run: |
46-
cd /tmp &&
47-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4844
- name: build
49-
run: |
50-
cd "/tmp/$repo" &&
51-
make
45+
run: cd "/tmp/$repo" && make ci
5246
- name: test
53-
run: |
54-
cd "/tmp/$repo" &&
55-
make test
47+
run: cd "/tmp/$repo" && make test

.github/workflows/centos8.yaml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
yum install -y git make
39+
run: yum install -y git make
4440
- name: git clone
45-
run: |
46-
cd /tmp &&
47-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4844
- name: build
49-
run: |
50-
cd "/tmp/$repo" &&
51-
make
45+
run: cd "/tmp/$repo" && make ci
5246
- name: test
53-
run: |
54-
cd "/tmp/$repo" &&
55-
make test
47+
run: cd "/tmp/$repo" && make test

.github/workflows/debian.yaml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
apt-get update &&
44-
apt-get install -y git make
39+
run: apt-get update -qq && apt-get install -qy git make
4540
- name: git clone
46-
run: |
47-
cd /tmp &&
48-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4944
- name: build
50-
run: |
51-
cd "/tmp/$repo" &&
52-
make
45+
run: cd "/tmp/$repo" && make ci
5346
- name: test
54-
run: |
55-
cd "/tmp/$repo" &&
56-
make test
47+
run: cd "/tmp/$repo" && make test

.github/workflows/debian_10.yaml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
apt-get update &&
44-
apt-get install -y git make
39+
run: apt-get update -qq && apt-get install -qy git make
4540
- name: git clone
46-
run: |
47-
cd /tmp &&
48-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4944
- name: build
50-
run: |
51-
cd "/tmp/$repo" &&
52-
make
45+
run: cd "/tmp/$repo" && make ci
5346
- name: test
54-
run: |
55-
cd "/tmp/$repo" &&
56-
make test
47+
run: cd "/tmp/$repo" && make test

.github/workflows/debian_8.yaml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
apt-get update &&
44-
apt-get install -y git make
39+
run: apt-get update -qq && apt-get install -qy git make
4540
- name: git clone
46-
run: |
47-
cd /tmp &&
48-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4944
- name: build
50-
run: |
51-
cd "/tmp/$repo" &&
52-
make
45+
run: cd "/tmp/$repo" && make ci
5346
- name: test
54-
run: |
55-
cd "/tmp/$repo" &&
56-
make test
47+
run: cd "/tmp/$repo" && make test

.github/workflows/debian_9.yaml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,12 @@ jobs:
3636
# untars repo in docker container so git submodule update fails
3737
#- uses: actions/checkout@v2
3838
- name: install git & make
39-
run: |
40-
ls -l /.dockerenv
41-
echo "pwd is $PWD"
42-
cat /etc/*release
43-
apt-get update &&
44-
apt-get install -y git make
39+
run: apt-get update -qq && apt-get install -qy git make
4540
- name: git clone
46-
run: |
47-
cd /tmp &&
48-
git clone "https://github.com/harisekhon/$repo"
41+
run: cd /tmp && git clone "https://github.com/harisekhon/$repo"
42+
- name: init
43+
run: cd "/tmp/$repo" && git submodule update --init --recursive
4944
- name: build
50-
run: |
51-
cd "/tmp/$repo" &&
52-
make
45+
run: cd "/tmp/$repo" && make ci
5346
- name: test
54-
run: |
55-
cd "/tmp/$repo" &&
56-
make test
47+
run: cd "/tmp/$repo" && make test

0 commit comments

Comments
 (0)