From 63d013b7d216645ccf1de7acbbe2b305e57e2347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Su=C3=A1rez=20Hern=C3=A1ndez?= Date: Wed, 21 Feb 2024 11:43:08 +0000 Subject: [PATCH] Make sure entrypoint script is executed on CI container --- .github/workflows/functional-fast-opensuse-leap.yml | 2 ++ .github/workflows/functional-full-opensuse-leap.yml | 2 ++ .github/workflows/integration-fast-opensuse-leap.yml | 2 ++ .github/workflows/integration-full-opensuse-leap.yml | 2 ++ .github/workflows/scenarios-fast-opensuse-leap.yml | 2 ++ .github/workflows/scenarios-full-opensuse-leap.yml | 2 ++ .github/workflows/unit-fast-opensuse-leap.yml | 2 ++ .github/workflows/unit-full-opensuse-leap.yml | 2 ++ 8 files changed, 16 insertions(+) diff --git a/.github/workflows/functional-fast-opensuse-leap.yml b/.github/workflows/functional-fast-opensuse-leap.yml index dde22b86b6..ad4fae46af 100644 --- a/.github/workflows/functional-fast-opensuse-leap.yml +++ b/.github/workflows/functional-fast-opensuse-leap.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout Salt uses: actions/checkout@v4 + - name: Run Container entrypoint script + run: /root/entrypoint.sh - name: Run Fast functional tests run: | salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \ diff --git a/.github/workflows/functional-full-opensuse-leap.yml b/.github/workflows/functional-full-opensuse-leap.yml index 22e0c8ff37..b8b128f02d 100644 --- a/.github/workflows/functional-full-opensuse-leap.yml +++ b/.github/workflows/functional-full-opensuse-leap.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout Salt uses: actions/checkout@v4 + - name: Run Container entrypoint script + run: /root/entrypoint.sh - name: Run Full functional tests run: | salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \ diff --git a/.github/workflows/integration-fast-opensuse-leap.yml b/.github/workflows/integration-fast-opensuse-leap.yml index 41dc7ffb8d..ef0ee49700 100644 --- a/.github/workflows/integration-fast-opensuse-leap.yml +++ b/.github/workflows/integration-fast-opensuse-leap.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout Salt uses: actions/checkout@v4 + - name: Run Container entrypoint script + run: /root/entrypoint.sh - name: Run Fast integration tests run: | salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \ diff --git a/.github/workflows/integration-full-opensuse-leap.yml b/.github/workflows/integration-full-opensuse-leap.yml index f431632122..a2d14ee4f2 100644 --- a/.github/workflows/integration-full-opensuse-leap.yml +++ b/.github/workflows/integration-full-opensuse-leap.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout Salt uses: actions/checkout@v4 + - name: Run Container entrypoint script + run: /root/entrypoint.sh - name: Run Full integration tests run: | salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \ diff --git a/.github/workflows/scenarios-fast-opensuse-leap.yml b/.github/workflows/scenarios-fast-opensuse-leap.yml index 41afac798d..8097b7bd13 100644 --- a/.github/workflows/scenarios-fast-opensuse-leap.yml +++ b/.github/workflows/scenarios-fast-opensuse-leap.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout Salt uses: actions/checkout@v4 + - name: Run Container entrypoint script + run: /root/entrypoint.sh - name: Run Fast scenarios tests run: | salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \ diff --git a/.github/workflows/scenarios-full-opensuse-leap.yml b/.github/workflows/scenarios-full-opensuse-leap.yml index 2c38423011..e08775e271 100644 --- a/.github/workflows/scenarios-full-opensuse-leap.yml +++ b/.github/workflows/scenarios-full-opensuse-leap.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout Salt uses: actions/checkout@v4 + - name: Run Container entrypoint script + run: /root/entrypoint.sh - name: Run Full scenarios tests run: | salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \ diff --git a/.github/workflows/unit-fast-opensuse-leap.yml b/.github/workflows/unit-fast-opensuse-leap.yml index 13fb339fc8..acc88d82d7 100644 --- a/.github/workflows/unit-fast-opensuse-leap.yml +++ b/.github/workflows/unit-fast-opensuse-leap.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout Salt uses: actions/checkout@v4 + - name: Run Container entrypoint script + run: /root/entrypoint.sh - name: Run Fast unit tests run: | salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \ diff --git a/.github/workflows/unit-full-opensuse-leap.yml b/.github/workflows/unit-full-opensuse-leap.yml index ee826e7ac8..b8b6d53a6e 100644 --- a/.github/workflows/unit-full-opensuse-leap.yml +++ b/.github/workflows/unit-full-opensuse-leap.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout Salt uses: actions/checkout@v4 + - name: Run Container entrypoint script + run: /root/entrypoint.sh - name: Run Full unit tests run: | salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \