We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 50e1b97 + 27901a8 commit 5a73440Copy full SHA for 5a73440
.github/workflows/run_tests.yaml
@@ -4,7 +4,7 @@ on: [push, pull_request]
4
5
jobs:
6
tests:
7
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-20.04
8
steps:
9
- uses: actions/checkout@v2
10
with:
@@ -44,6 +44,10 @@ jobs:
44
id: build_binutils
45
run: |
46
echo "Building binutils-esp32ulp"
47
+ # building requires an older version of gcc
48
+ sudo apt-get install -y gcc-7 g++-7
49
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 7
50
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 7
51
git clone --depth 1 https://github.com/espressif/binutils-esp32ulp.git
52
pushd binutils-esp32ulp
53
git describe --always --tags
0 commit comments