Skip to content

Commit

Permalink
Merge pull request #84 from wnienhaus/build_on_ubuntu_2004
Browse files Browse the repository at this point in the history
Update builder image to ubuntu-20.04
  • Loading branch information
wnienhaus authored Jun 14, 2023
2 parents 50e1b97 + 27901a8 commit 5a73440
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -44,6 +44,10 @@ jobs:
id: build_binutils
run: |
echo "Building binutils-esp32ulp"
# building requires an older version of gcc
sudo apt-get install -y gcc-7 g++-7
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 7
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 7
git clone --depth 1 https://github.com/espressif/binutils-esp32ulp.git
pushd binutils-esp32ulp
git describe --always --tags
Expand Down

0 comments on commit 5a73440

Please sign in to comment.