From 884ee668a7bc887108332ca702003409a70f5501 Mon Sep 17 00:00:00 2001 From: Vilius Sutkus '89 Date: Sat, 3 Aug 2024 19:13:33 +0300 Subject: [PATCH] Exclude tmpfile/ubuntu from the build matrix --- .github/workflows/build_inner.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build_inner.yml b/.github/workflows/build_inner.yml index 85589cf..cdb4f73 100644 --- a/.github/workflows/build_inner.yml +++ b/.github/workflows/build_inner.yml @@ -23,6 +23,7 @@ jobs: strategy: fail-fast: false matrix: + conanfile: ${{ fromJSON(format('["{0}"]', inputs.conanfile)) }} config: - { build_machine: ubuntu-22.04, host_profile: ubuntu } - { build_machine: ubuntu-22.04, host_profile: android-23-armv8, ndk_version: 26.3.11579264 } @@ -33,6 +34,9 @@ jobs: - { build_machine: ubuntu-22.04, host_profile: android-21-armv7, ndk_version: 26.3.11579264 } - { build_machine: ubuntu-22.04, host_profile: android-21-x86, ndk_version: 26.3.11579264 } - { build_machine: ubuntu-22.04, host_profile: android-21-x86_64, ndk_version: 26.3.11579264 } + exclude: + - conanfile: 'recipes/tmpfile/all/conanfile.py' + config: { build_machine: ubuntu-22.04, host_profile: ubuntu } steps: - name: checkout uses: actions/checkout@v4