From e09cd8fe54b29d83bc6b24964af74fbd834d74c3 Mon Sep 17 00:00:00 2001 From: Hyy2001X <1804430051@qq.com> Date: Tue, 25 May 2021 10:28:01 +0800 Subject: [PATCH] Update AutoBuild-Sample.yml --- .github/workflows/AutoBuild-Sample.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/AutoBuild-Sample.yml b/.github/workflows/AutoBuild-Sample.yml index 6166e62..5fa777e 100644 --- a/.github/workflows/AutoBuild-Sample.yml +++ b/.github/workflows/AutoBuild-Sample.yml @@ -113,12 +113,6 @@ jobs: Firmware-Diy_Base Firmware-Diy - - name: Process Openwrt source code - run: | - cd openwrt - ./scripts/feeds install -a - make defconfig - - name: SSH connection to Actions uses: P3TERX/ssh2actions@v1.0.0 if: (github.event.inputs.ssh == 'true' && github.event.inputs.ssh != 'false') || contains(github.event.action, 'ssh') @@ -129,6 +123,8 @@ jobs: - name: Compile the Openwrt run: | cd openwrt + ./scripts/feeds install -a + make defconfig make download -j8 echo "Start to compile OpenWrt for $CONFIG_FILE..." make -j$(nproc) || make -j1 V=s