Skip to content

Commit f1bb15b

Browse files
authored
Merge pull request #1090 from puppetlabs/pdksync_weekly_run
pdksync - Add weekly scheduled workflows
2 parents ab04ed6 + c6ce455 commit f1bb15b

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/weekly.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: "weekly"
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * 6'
6+
7+
jobs:
8+
LitmusAcceptance:
9+
runs-on: self-hosted
10+
strategy:
11+
matrix:
12+
ruby_version: [2.5.x]
13+
puppet_gem_version: [~> 6.0]
14+
platform: [release_checks]
15+
agent_family: ['puppet5', 'puppet6']
16+
17+
steps:
18+
- uses: actions/checkout@v1
19+
- name: Litmus Parallel
20+
uses: puppetlabs/action-litmus_parallel@master
21+
with:
22+
platform: ${{ matrix.platform }}
23+
agent_family: ${{ matrix.agent_family }}
24+
Spec:
25+
runs-on: self-hosted
26+
strategy:
27+
matrix:
28+
check: [spec, 'syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop']
29+
ruby_version: [2.5.x]
30+
puppet_gem_version: [~> 5.0, ~> 6.0]
31+
exclude:
32+
- puppet_gem_version: ~> 5.0
33+
check: 'syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop'
34+
- ruby_version: 2.5.x
35+
puppet_gem_version: ~> 5.0
36+
steps:
37+
- uses: actions/checkout@v1
38+
- name: Spec Tests
39+
uses: puppetlabs/action-litmus_spec@master
40+
with:
41+
puppet_gem_version: ${{ matrix.puppet_gem_version }}
42+
check: ${{ matrix.check }}

0 commit comments

Comments
 (0)