Skip to content

Commit 867a567

Browse files
committed
chore: Switch pipeline generation test to Actions
1 parent 42a70be commit 867a567

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/dockerfiles.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Check for out of sync YAML pipeline files
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
regen:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- run: ./update.sh -t
11+
- run: git diff --color --exit-code

.travis.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,11 @@ dist: xenial
77
language: minimal
88

99
stages:
10-
- Test
1110
- name: Deploy
1211
if: branch = master AND type IN (push)
1312

1413
jobs:
15-
fast_finish: true
16-
1714
include:
18-
- stage: Test
19-
name: .travis.yml and travis.yml.template consistency
20-
script:
21-
- ./update.sh -t
22-
- git diff --stat --exit-code .travis.yml
23-
2415
- stage: Deploy
2516
before_script:
2617
- |

0 commit comments

Comments
 (0)