-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support for ArchLinux, Add GitHub Actions.
- Loading branch information
1 parent
db98cc0
commit e4cc6c2
Showing
8 changed files
with
140 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
# | ||
exclude_paths: | ||
- ./meta/exception.yml | ||
- ./meta/preferences.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
--- | ||
# | ||
# Ansible managed | ||
# | ||
|
||
name: Ansible Molecule | ||
|
||
on: | ||
push: | ||
tags_ignore: | ||
- '*' | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: molecule | ||
uses: robertdebock/[email protected] | ||
with: | ||
image: ${{ matrix.image }} | ||
entrypoint: /usr/local/bin/molecule | ||
args: lint | ||
test: | ||
needs: | ||
- lint | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
image: | ||
- debian | ||
- centos | ||
- fedora | ||
- opensuse | ||
- ubuntu | ||
tag: | ||
- 1 | ||
- 7 | ||
- edge | ||
- latest | ||
- rawhide | ||
- unstable | ||
exclude: | ||
- image: alpine | ||
tag: 1 | ||
- image: alpine | ||
tag: 7 | ||
- image: alpine | ||
tag: rawhide | ||
- image: alpine | ||
tag: unstable | ||
- image: amazonlinux | ||
tag: 7 | ||
- image: amazonlinux | ||
tag: edge | ||
- image: amazonlinux | ||
tag: rawhide | ||
- image: amazonlinux | ||
tag: unstable | ||
- image: debian | ||
tag: 1 | ||
- image: debian | ||
tag: 7 | ||
- image: debian | ||
tag: edge | ||
- image: debian | ||
tag: rawhide | ||
- image: centos | ||
tag: 1 | ||
- image: centos | ||
tag: edge | ||
- image: centos | ||
tag: rawhide | ||
- image: centos | ||
tag: unstable | ||
- image: fedora | ||
tag: 1 | ||
- image: fedora | ||
tag: 7 | ||
- image: fedora | ||
tag: edge | ||
- image: fedora | ||
tag: unstable | ||
- image: opensuse | ||
tag: 1 | ||
- image: opensuse | ||
tag: 7 | ||
- image: opensuse | ||
tag: edge | ||
- image: opensuse | ||
tag: rawhide | ||
- image: opensuse | ||
tag: unstable | ||
- image: ubuntu | ||
tag: 1 | ||
- image: ubuntu | ||
tag: 7 | ||
- image: ubuntu | ||
tag: edge | ||
- image: ubuntu | ||
tag: rawhide | ||
- image: ubuntu | ||
tag: unstable | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
path: "${{ github.repository }}" | ||
- name: molecule | ||
uses: robertdebock/[email protected] | ||
with: | ||
image: ${{ matrix.image }} | ||
options: "--parallel all" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
# | ||
# Ansible managed | ||
# | ||
|
||
name: Release to Ansible Galaxy | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: galaxy | ||
uses: robertdebock/[email protected] | ||
with: | ||
galaxy_api_key: ${{ secrets.galaxy_api_key }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,7 +187,7 @@ | |
same "printed page" as the copyright notice for easier | ||
identification within third-party archives. | ||
|
||
Copyright 2019 Robert de Bock ([email protected]) | ||
Copyright 2020 Robert de Bock ([email protected]) | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
tox_parallel: yes |