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