Skip to content

Commit

Permalink
Update avr-gcc to 14.1.0 in CI (#94)
Browse files Browse the repository at this point in the history
- Update avr-gcc to 14.1.0 in CI
- Try ubuntu-24.04 in CI
  • Loading branch information
ASleepyCat authored Aug 25, 2024
1 parent 2163980 commit 825b393
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ concurrency:
jobs:
build:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install avr-gcc
run: |
curl -L -o /tmp/modm-avr-gcc.tar.bz2 https://github.com/modm-io/avr-gcc/releases/download/v13.2.0/modm-avr-gcc.tar.bz2
curl -L -o /tmp/avr-gcc-14.1.0-x64-linux.tar.bz2 https://github.com/ZakKemble/avr-gcc-build/releases/download/v14.1.0-1/avr-gcc-14.1.0-x64-linux.tar.bz2
echo Extracting avr-gcc archive
tar xf /tmp/modm-avr-gcc.tar.bz2 --directory /opt
echo "PATH=/opt/avr-gcc/bin:$(echo $PATH)" >> $GITHUB_ENV
tar xf /tmp/avr-gcc-14.1.0-x64-linux.tar.bz2 --directory /opt
echo "PATH=/opt/avr-gcc-14.1.0-x64-linux/bin:$(echo $PATH)" >> $GITHUB_ENV
- name: make
run: |
cd fw
Expand Down

0 comments on commit 825b393

Please sign in to comment.