Skip to content

Commit

Permalink
Fix workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Carter committed Jul 15, 2023
1 parent 7078665 commit 68fa846
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/Build_Examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
python .github/workflows/scripts/build.py
(Regression Test) Make 3.80:
Regression Test Make 3.81:
runs-on:
- ubuntu-latest
steps:
Expand Down Expand Up @@ -247,7 +247,21 @@ jobs:
fi
echo "RUN_TEST=$RUN_TEST" >> $GITHUB_OUTPUT
- name: Install Make 3.81
if: ${{ steps.check_watch.outputs.RUN_TEST == '1' }}
run: |
# Install RISCV tools (updated)
cd /home/runner
wget https://ftp.gnu.org/gnu/make/make-3.81.tar.gz
tar -xvf make-3.81.tar.gz
./configure
make
make install --prefix=/home/runner/make-3.81
# Add 3.81 to path
echo "/home/runner/make-3.81/bin" >> $GITHUB_PATH
- name: Install ARM GCC Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
id: arm-none-eabi-gcc-action
Expand Down Expand Up @@ -281,18 +295,4 @@ jobs:
# Add riscv tools to path
echo "/home/runner/riscv-none-elf-gcc/$TOOL_VER/.content/bin" >> $GITHUB_PATH
- name: Install Make 3.81
if: ${{ steps.check_watch.outputs.RUN_TEST == '1' }}
run: |
# Install RISCV tools (updated)
cd /home/runner
wget https://ftp.gnu.org/gnu/make/make-3.81.tar.gz
tar -xvf make-3.81.tar.gz
./configure
make
make install --prefix=/home/runner/make-3.81
# Add 3.81 to path
echo "/home/runner/make-3.81/bin" >> $GITHUB_PATH

0 comments on commit 68fa846

Please sign in to comment.