diff --git a/.github/workflows/compile-configs-HC32.yml b/.github/workflows/compile-configs-HC32.yml index 9743030fa9..5c2973b45c 100644 --- a/.github/workflows/compile-configs-HC32.yml +++ b/.github/workflows/compile-configs-HC32.yml @@ -383,7 +383,6 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - chip: [GD32,N32] abl: [MM,Default] temp: [true,false] inshape: [true,false] @@ -418,7 +417,6 @@ jobs: - name: Run PlatformIO id: build_configs run: | - if [ "$AQUILA_VER" = GD32 ]; then AVTMP="GD32"; else AVTMP="N32"; fi; if ($TP); then TPTMP=-MPC; else TPTMP=; fi; if ($IS); then ISTMP=-IS; else ISTMP=; fi; > Marlin/Configuration.h @@ -433,8 +431,8 @@ jobs: cp configurations/Voxelab\ Aquila\ HC32/C2/MM/Configuration_adv.h Marlin/Configuration_adv.h cp configurations/Voxelab\ Aquila\ HC32/C2/MM/Version.h Marlin/Version.h fi; - echo "filename=C2-Aquila_${AVTMP}_${ABL}${ISTMP}${TPTMP}$(date +"-%m-%d").bin" >> $GITHUB_OUTPUT - sed -i "s/default_envs =.*/default_envs = ${AQUILA_VER}F103RC_voxelab_maple/" platformio.ini + echo "filename=C2-HC32_${ABL}${ISTMP}${TPTMP}$(date +"-%m-%d").bin" >> $GITHUB_OUTPUT + sed -i "s/default_envs =.*/default_envs = HC32F460C_aquila_101/" platformio.ini if ($IS); then STEMP=; else STEMP='\/\/'; fi; sed -i "s/.*#define INPUT_SHAPING_X/${STEMP}#define INPUT_SHAPING_X/" Marlin/Configuration_adv.h sed -i "s/.*#define INPUT_SHAPING_Y/${STEMP}#define INPUT_SHAPING_Y/" Marlin/Configuration_adv.h @@ -444,9 +442,8 @@ jobs: sed -i "s/.*#define MPCTEMP/${MTEMP}#define MPCTEMP/" Marlin/Configuration.h pio run mkdir temp - mv .pio/build/${AQUILA_VER}F103RC_voxelab_maple/*.bin temp/build.bin + mv .pio/build/HC32F460C_aquila_101/*.bin temp/build.bin env: - AQUILA_VER: ${{ matrix.chip }} ABL: ${{ matrix.abl }} TP: ${{ matrix.temp }} IS: ${{ matrix.inshape }}