Trying to work around broken archive.ubuntu.com mirror

pull/753/head
Daniele Lacamera 2026-04-16 18:39:39 +02:00
parent 776378ca78
commit 4f050f2485
8 changed files with 12 additions and 7 deletions

View File

@ -9,7 +9,7 @@ on:
jobs:
renode_automated_fastmath:
runs-on: ubuntu-22.04
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/checkout@v4

View File

@ -9,7 +9,7 @@ on:
jobs:
renode_automated_noasm_smallstack:
runs-on: ubuntu-22.04
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/checkout@v4

View File

@ -9,7 +9,7 @@ on:
jobs:
renode_automated_noasm:
runs-on: ubuntu-22.04
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/checkout@v4

View File

@ -9,7 +9,7 @@ on:
jobs:
renode_automated_base:
runs-on: ubuntu-22.04
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/checkout@v4

View File

@ -9,7 +9,7 @@ on:
jobs:
renode_automated_multi_sha:
runs-on: ubuntu-22.04
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/checkout@v4

View File

@ -9,7 +9,7 @@ on:
jobs:
renode_automated_multi_sha:
runs-on: ubuntu-22.04
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/checkout@v4

View File

@ -9,7 +9,7 @@ on:
jobs:
renode_automated_smallstack:
runs-on: ubuntu-22.04
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/checkout@v4

View File

@ -2,6 +2,11 @@ FROM antmicro/renode:1.15.3
RUN whoami
USER root
RUN sed -i \
-e 's|https\?://archive\.ubuntu\.com/ubuntu/\?|http://mirror.arizona.edu/ubuntu/|g' \
-e 's|https\?://security\.ubuntu\.com/ubuntu/\?|http://mirror.arizona.edu/ubuntu/|g' \
-e 's|https\?://[a-z0-9.-]*\.archive\.ubuntu\.com/ubuntu/\?|http://mirror.arizona.edu/ubuntu/|g' \
/etc/apt/sources.list /etc/apt/sources.list.d/*.list 2>/dev/null || true
RUN apt-get update
RUN apt-get install gcc-arm-none-eabi make -y