From a80c618ceff9d15a6ff70a3e6d65d95d57ed826f Mon Sep 17 00:00:00 2001 From: m2 <69128853+m2Giles@users.noreply.github.com> Date: Mon, 8 Apr 2024 14:17:26 -0400 Subject: [PATCH 1/2] fix: temporaliy disable v4l2loopback for 39 (#1105) --- build_files/base/install-akmods.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build_files/base/install-akmods.sh b/build_files/base/install-akmods.sh index 26eac0433f5..43a68596405 100755 --- a/build_files/base/install-akmods.sh +++ b/build_files/base/install-akmods.sh @@ -10,7 +10,12 @@ if [[ "${FEDORA_MAJOR_VERSION}" -ge "39" ]]; then /tmp/akmods-rpms/kmods/*xone*.rpm \ /tmp/akmods-rpms/kmods/*openrazer*.rpm \ /tmp/akmods-rpms/kmods/*wl*.rpm - if grep -Eqv "(surface|asus)" <<< "${AKMODS_FLAVOR}"; then + # Temporarily disable v4l2loopback until RPMFusion rebuilds module. + # if grep -Eqv "(surface|asus)" <<< "${AKMODS_FLAVOR}"; then + # rpm-ostree install \ + # /tmp/akmods-rpms/kmods/*v4l2loopback*.rpm + # fi + if [[ "${FEDORA_MAJOR_VERSION}" == "40" ]] && grep -Eqv "(surface|asus)" <<< "${AKMODS_FLAVOR}"; then rpm-ostree install \ /tmp/akmods-rpms/kmods/*v4l2loopback*.rpm fi From e3d56f802a0201dd242dbe98be803be723e6f264 Mon Sep 17 00:00:00 2001 From: m2 <69128853+m2Giles@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:16:36 -0400 Subject: [PATCH 2/2] fix(ci): fix variable names for gts/latest tagging (#1106) --- .github/workflows/reusable-build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index dda0710eda3..bec8791e4cc 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -128,8 +128,8 @@ jobs: SHA_SHORT="${GITHUB_SHA::7}" COMMIT_TAGS+=("pr-${{ github.event.number }}-${FEDORA_VERSION}") COMMIT_TAGS+=("${SHA_SHORT}-${FEDORA_VERSION}") - if [[ "${{ matrix.is_latest_version }}" == "true" ]] && \ - [[ "${{ matrix.is_stable_version }}" == "true" ]]; then + if [[ "$IS_LATEST_VERSION" == "true" ]] && \ + [[ "$IS_STABLE_VERSION" == "true" ]]; then COMMIT_TAGS+=("pr-${{ github.event.number }}") COMMIT_TAGS+=("${SHA_SHORT}") fi @@ -138,16 +138,16 @@ jobs: if [[ ${{ github.ref_name }} == "testing" ]]; then BUILD_TAGS=("${FEDORA_VERSION}-testing" "${FEDORA_VERSION}-testing-${TIMESTAMP}") - if [[ "${{ matrix.is_latest_version }}" == "true" ]] && \ - [[ "${{ matrix.is_stable_version }}" == "true" ]]; then + if [[ "$IS_LATEST_VERSION" == "true" ]] && \ + [[ "$IS_STABLE_VERSION" == "true" ]]; then BUILD_TAGS+=("testing") - elif [[ "${{ matrix.is_gts_version }}" == "true" ]]; then + elif [[ "$IS_GTS_VERSION" == "true" ]]; then BUILD_TAGS+=("gts-testing") fi - elif [[ "${{ matrix.is_latest_version }}" == "true" ]] && \ - [[ "${{ matrix.is_stable_version }}" == "true" ]]; then + elif [[ "$IS_LATEST_VERSION" == "true" ]] && \ + [[ "$IS_STABLE_VERSION" == "true" ]]; then BUILD_TAGS+=("latest") - elif [[ "${{ matrix.is_gts_version }}" == "true" ]]; then + elif [[ "$IS_GTS_VERSION" == "true" ]]; then BUILD_TAGS+=("gts") fi