github LFS is broken or some sort of quota?

This commit is contained in:
rusefillc 2023-12-28 16:47:52 -05:00
parent 2e8b2aef48
commit dd2aeddd13
3 changed files with 14 additions and 14 deletions

View File

@ -544,17 +544,14 @@ jobs:
bash gen_config_board.sh ${{matrix.folder}} ${{matrix.short-board-name}}
fi
# Build machines don't have arm-none-eabi gcc, so let's download it and put it on the path
- name: Download & Install GCC
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
if: ${{ env.skip != 'true' }}
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
run: |
./firmware/provide_gcc.sh
echo "`pwd`/gcc-arm-none-eabi/bin" >> $GITHUB_PATH
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '12.2.Rel1'
# Make sure the compiler we just downloaded works - just print out the version
- name: Test Compiler
- name: Test arm-none-eabi-gcc Compiler
if: ${{ env.skip != 'true' }}
run: arm-none-eabi-gcc -v

View File

@ -14,11 +14,5 @@ mkdir ~/.rusefi-tools
dir=$(realpath firmware)
cd ~/.rusefi-tools
# provide GCC arm-none-eabi toolchain
${dir}/provide_gcc.sh
# Add the compiler to your path
export PATH=$HOME/.rusefi-tools/gcc-arm-none-eabi/bin:$PATH
cd ${dir}
make -j$(nproc)

View File

@ -67,6 +67,15 @@ jobs:
working-directory: ./firmware/
run: ./gen_default_everything.sh
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '12.2.Rel1'
# Make sure the compiler we just downloaded works - just print out the version
- name: Test arm-none-eabi-gcc Compiler
run: arm-none-eabi-gcc -v
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3