From 47d7b79976025d309b46b814d152b4bd26228304 Mon Sep 17 00:00:00 2001 From: Daniel Pawlik Date: Sat, 23 Nov 2024 16:41:41 +0100 Subject: [PATCH] Disable temporary LTO on u6lite and uap ac lr --- .github/workflows/u6lite.yaml | 4 ++++ .github/workflows/unifi_ac_lr.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/u6lite.yaml b/.github/workflows/u6lite.yaml index 6aa1065..b815d81 100644 --- a/.github/workflows/u6lite.yaml +++ b/.github/workflows/u6lite.yaml @@ -63,6 +63,10 @@ jobs: curl -SL "https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/$ROLE_CONFIG" >> .config curl -SL https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/configs/common/snapshot-short >> .config + - name: Disable LTO + run: | + sed -i '/CONFIG_USE_LTO=y/d' .config + - name: Enable openssl run: | sed -i '/CONFIG_PACKAGE_wpad-mbedtls=y/d' .config diff --git a/.github/workflows/unifi_ac_lr.yaml b/.github/workflows/unifi_ac_lr.yaml index 52425e2..7ae9e36 100644 --- a/.github/workflows/unifi_ac_lr.yaml +++ b/.github/workflows/unifi_ac_lr.yaml @@ -63,6 +63,10 @@ jobs: curl -SL "https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/$ROLE_CONFIG" >> .config curl -SL https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/configs/common/snapshot-short >> .config + - name: Disable LTO + run: | + sed -i '/CONFIG_USE_LTO=y/d' .config + - name: Enable openssl run: | sed -i '/CONFIG_PACKAGE_wpad-mbedtls=y/d' .config