You've already forked ansible-role-common
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
CI / lint (push) Successful in 49s
ci/woodpecker/push/release/2 Pipeline failed
CI / Molecule Tests ${{ matrix.os }} (almalinux8) (push) Successful in 3m29s
ci/woodpecker/push/release/1 Pipeline was successful
ci/woodpecker/push/release/3 Pipeline was successful
ci/woodpecker/push/test/1 Pipeline was successful
ci/woodpecker/push/test/3 Pipeline failed
ci/woodpecker/push/test/2 Pipeline failed
ci/woodpecker/push/z.ntfy unknown status
CI / Molecule Tests ${{ matrix.os }} (almalinux9) (push) Successful in 3m15s
CI / release (push) Failing after 16s
82 lines
2.5 KiB
YAML
82 lines
2.5 KiB
YAML
name: CI
|
|
on: push
|
|
|
|
jobs:
|
|
# lint:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - uses: actions/checkout@v4
|
|
# - uses: actions/setup-go@v5
|
|
# with:
|
|
# go-version: '1.22'
|
|
# - uses: golangci/golangci-lint-action@v3
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.10'
|
|
#cache: 'pip' # caching pip dependencies
|
|
- name: Ensure requirements are installed
|
|
run: pip install -r requirements.txt
|
|
- name: Lint with ansible-lint
|
|
run: ansible-lint -c ".ansible-lint"
|
|
env:
|
|
PY_COLORS: '1'
|
|
ANSIBLE_FORCE_COLOR: '1'
|
|
- name: Lint with ansible-lint
|
|
run: yamllint .
|
|
env:
|
|
PY_COLORS: '1'
|
|
ANSIBLE_FORCE_COLOR: '1'
|
|
molecule:
|
|
name: Molecule Tests ${{ matrix.os }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
os: [almalinux8, almalinux9]
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.10'
|
|
#cache: 'pip' # caching pip dependencies
|
|
|
|
- name: Ensure requirements are installed
|
|
run: pip install -r requirements.txt
|
|
|
|
- name: Run Molecule tests.
|
|
run: molecule test
|
|
env:
|
|
PY_COLORS: '1'
|
|
ANSIBLE_FORCE_COLOR: '1'
|
|
MOLECULE_DISTRO: ${{ matrix.os }}
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.22'
|
|
- name: Install gitea provider for Go Semantic Release
|
|
run: |
|
|
mkdir -p .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/ && \
|
|
wget https://github.com/cybercinch/go-semantic-release-provider-gitea/releases/download/v${GITEA_PROVIDER_VER}/go-semantic-release-provider-gitea_v${GITEA_PROVIDER_VER}_linux_amd64 \
|
|
-O .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/gitea && \
|
|
chmod a+x .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/gitea
|
|
env:
|
|
GITEA_PROVIDER_VER: 1.0.9
|
|
- run: |
|
|
echo "github repo: ${GITHUB_REPOSITORY}"
|
|
- uses: go-semantic-release/action@v1
|
|
with:
|
|
custom-arguments: --provider=gitea
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.G_TOKEN }}
|
|
GITEA_HOST: ${{ secrets.G_SERVER_URL}}
|