From 9182d141752067c3103c5bf78e3f43fc806b49db Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 3 Dec 2025 19:43:29 +0100 Subject: [PATCH] Ignored LID Switch Driver --- .github/workflows/test-code.yml | 1 + .github/workflows/test-deploy.yml | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/test-code.yml b/.github/workflows/test-code.yml index f51fb8a6..2256d642 100644 --- a/.github/workflows/test-code.yml +++ b/.github/workflows/test-code.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - main pull_request: jobs: diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index aaa5dc57..fa744d13 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - main pull_request: jobs: @@ -11,6 +12,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 240 + env: + # The following roles will be ignored in the tests + EXCLUDED_ROLES: > + drv-lid-switch + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -31,6 +37,7 @@ jobs: # Create inventory (also creates inventories/github-ci/.password if missing) infinito create inventory inventories/github-ci \ --host localhost \ + --exclude "$EXCLUDED_ROLES" \ --ssl-disabled INVENTORY_PATH="inventories/github-ci/servers.yml" @@ -52,6 +59,7 @@ jobs: # Rebuild inventory; .password will be reused if present infinito create inventory inventories/github-ci \ --host localhost \ + --exclude "$EXCLUDED_ROLES" \ --ssl-disabled INVENTORY_PATH="inventories/github-ci/servers.yml" @@ -71,6 +79,7 @@ jobs: infinito create inventory inventories/github-ci \ --host localhost \ + --exclude "$EXCLUDED_ROLES" \ --ssl-disabled INVENTORY_PATH="inventories/github-ci/servers.yml"