Skip to content

Update sous-chefs/.github action to v2.0.5 #214

Update sous-chefs/.github action to v2.0.5

Update sous-chefs/.github action to v2.0.5 #214

Workflow file for this run

---
name: ci
"on":
pull_request:
push:
branches:
- main
jobs:
lint-unit:
uses: sous-chefs/.github/.github/workflows/[email protected]
permissions:
actions: write
checks: write
pull-requests: write
statuses: write
issues: write
integration:
needs: lint-unit
runs-on: ubuntu-latest
strategy:
matrix:
os:
- "almalinux-8"
- "amazonlinux-2"
- "centos-7"
- "centos-stream-8"
- "debian-10"
# TODO: Not working and needs to be fixed
# - 'debian-11'
- "rockylinux-8"
- "ubuntu-1804"
- "ubuntu-2004"
suite:
- "smoke-package-stable"
- "smoke-package-current"
- "smoke-war-stable"
- "smoke-war-latest"
- "authentication-private-key"
- "authentication-username-password"
- "authentication-credential-file"
- "jenkins-proxy-config"
- "jenkins-proxy-remove"
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Install Chef
uses: actionshub/[email protected]
- name: Dokken
uses: actionshub/[email protected]
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}
- name: Print debug output on failure
if: failure()
run: |
set -x
sudo journalctl -l --since today
KITCHEN_LOCAL_YAML=kitchen.dokken.yml /usr/bin/kitchen exec ${{ matrix.suite }}-${{ matrix.os }} -c "journalctl -l"