get rid of compile and clean scripts
This commit is contained in:
parent
ba13f528d8
commit
196cef5aa1
|
@ -589,8 +589,10 @@ jobs:
|
||||||
# Build the firmware!
|
# Build the firmware!
|
||||||
- name: Build Firmware
|
- name: Build Firmware
|
||||||
if: ${{ env.skip != 'true' }}
|
if: ${{ env.skip != 'true' }}
|
||||||
|
working-directory: ./firmware/
|
||||||
run: |
|
run: |
|
||||||
bash misc/jenkins/compile_other_versions/compile.sh
|
make clean
|
||||||
|
bash config/boards/common_script.sh ${{ env.BOARD_META_PATH }}
|
||||||
|
|
||||||
- name: Package Bundle
|
- name: Package Bundle
|
||||||
if: ${{ env.full == 'true' }}
|
if: ${{ env.full == 'true' }}
|
||||||
|
|
|
@ -20,9 +20,8 @@ export BOARD_META_PATH=$(bash bin/find_meta_info.sh ${HW_FOLDER} ${HW_TARGET})
|
||||||
|
|
||||||
echo "We aren't guaranteed a clean machine every time, so manually clean the output."
|
echo "We aren't guaranteed a clean machine every time, so manually clean the output."
|
||||||
make clean
|
make clean
|
||||||
cd ..
|
|
||||||
|
|
||||||
export EXTRA_2_PARAMS=-DHARDWARE_CI
|
export EXTRA_2_PARAMS=-DHARDWARE_CI
|
||||||
|
|
||||||
echo Build Firmware
|
echo Build Firmware
|
||||||
misc/jenkins/compile_other_versions/compile.sh
|
bash config/boards/common_script.sh "${BOARD_META_PATH}"
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
@echo off
|
|
||||||
bash.exe clean.sh
|
|
|
@ -1,6 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
echo "Entering firmware/clean.sh"
|
|
||||||
rm -rf .dep
|
|
||||||
rm -rf build
|
|
||||||
rm -rf pch/pch.h.gch
|
|
|
@ -1,9 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# fail on error!
|
|
||||||
set -e
|
|
||||||
|
|
||||||
cd firmware
|
|
||||||
bash clean.sh
|
|
||||||
|
|
||||||
bash config/boards/common_script.sh "${BOARD_META_PATH}"
|
|
|
@ -1,3 +0,0 @@
|
||||||
@echo off
|
|
||||||
bash.exe misc\jenkins\compile_other_versions\compile.sh %1 %2 %3 %4
|
|
||||||
bash.exe misc\jenkins\compile_other_versions\prepare_bundle.sh %1 %2 %3 %4
|
|
Loading…
Reference in New Issue