Skip to content

Commit

Permalink
Force install
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Carter committed Jul 15, 2023
1 parent 600a260 commit 440ce3e
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/Build_Examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,20 @@ jobs:
submodules: false
fetch-depth: 0
ref: '${{ github.event.pull_request.head.ref }}'
repository: '${{ github.event.pull_request.head.repo.full_name }}'
repository: '${{ github.event.pull_request.head.repo.full_name }}'

- name: Install Make 3.81
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: Check watch files
id: check_watch
Expand Down Expand Up @@ -248,20 +261,6 @@ jobs:
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

0 comments on commit 440ce3e

Please sign in to comment.