Skip to content

Commit

Permalink
Add "apt-get update" as suggested by error message from build-lin64.
Browse files Browse the repository at this point in the history
  • Loading branch information
ga committed Oct 31, 2024
1 parent 2d1f54f commit 4ae7532
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Dependenncies
run: sudo apt-get install -y build-essential git make gcc-avr avr-libc libelf-dev freeglut3-dev patchelf
run: |
sudo apt-get update
sudo apt-get install -y build-essential git make gcc-avr avr-libc libelf-dev freeglut3-dev patchelf
- name: CI-Build
run: |
make build-simavr V=1 RELEASE=1
Expand Down

0 comments on commit 4ae7532

Please sign in to comment.