Skip to content

Commit

Permalink
remove IS from BLT
Browse files Browse the repository at this point in the history
  • Loading branch information
classicrocker883 committed Oct 27, 2023
1 parent 327476c commit e732e34
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/compile-configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,6 @@ jobs:
chip: [GD32,N32]
temp: [true,false]
tjc: [true,false]
inshape: [true,false]
steps:
- uses: actions/checkout@v3
- name: Setup node
Expand Down Expand Up @@ -429,11 +428,10 @@ jobs:
- name: Run PlatformIO
id: build_configs
run: |
if ($IS); then TP = false; ISTMP=-IS; else ISTMP=; fi;
if ($TP); then TPTMP=-MPC; else TPTMP=; fi;
if [ "$AQUILA_VER" = GD32 ]; then AVTMP="GD32"; else AVTMP="N32"; fi;
if ($TJC); then DTMP=-TJC; else DTMP=; fi;
echo "filename=Aquila${DTMP}_${AVTMP}_BLT-ProUI${TPTMP}${ISTMP}.bin" >> $GITHUB_OUTPUT
echo "filename=Aquila${DTMP}_${AVTMP}_BLT-ProUI${TPTMP}.bin" >> $GITHUB_OUTPUT
> Marlin/Configuration.h
> Marlin/Configuration_adv.h
> Marlin/Version.h
Expand All @@ -443,12 +441,9 @@ jobs:
sed -i "s/default_envs =.*/default_envs = ${AQUILA_VER}F103RC_voxelab_maple/g" platformio.ini
if ($TP); then PTEMP='\/\/'; else PTEMP=; fi;
if ($TP); then MTEMP=; else MTEMP='\/\/'; fi;
if ($IS); then TEMP=; else TEMP='\/\/'; fi;
sed -i "s/[^ ]*#define PIDTEMP/$PTEMP#define PIDTEMP/g" Marlin/Configuration.h
sed -i "s/[^ ]*#define MPCTEMP/$MTEMP#define MPCTEMP/g" Marlin/Configuration.h
sed -i "s/[^ ]*#define NOZZLE_CLEAN_FEATURE/$PTEMP#define NOZZLE_CLEAN_FEATURE/g" Marlin/Configuration.h
sed -i "s/[^ ]*#define INPUT_SHAPING_X/$TEMP#define INPUT_SHAPING_X/g" Marlin/Configuration_adv.h
sed -i "s/[^ ]*#define INPUT_SHAPING_Y/$TEMP#define INPUT_SHAPING_Y/g" Marlin/Configuration_adv.h
if ($TJC); then TJEMP=; REMP='\/\/'; else TJEMP='\/\/'; REMP=; fi;
sed -i "s/[^ ]*#define TJC_DISPLAY/$TJEMP#define TJC_DISPLAY/g" Marlin/Configuration.h
sed -i "s/[^ ]*#define REVERSE_ENCODER_DIRECTION/$REMP#define REVERSE_ENCODER_DIRECTION/g" Marlin/Configuration.h
Expand All @@ -459,7 +454,6 @@ jobs:
AQUILA_VER: ${{ matrix.chip }}
TP: ${{ matrix.temp }}
TJC: ${{ matrix.tjc }}
IS: ${{ matrix.inshape }}
- name: Get release
id: get_release
uses: bruceadams/[email protected]
Expand Down

0 comments on commit e732e34

Please sign in to comment.