Skip to content

Commit 4f050f2

Browse files
committed
Trying to work around broken archive.ubuntu.com mirror
1 parent 776378c commit 4f050f2

File tree

8 files changed

+12
-7
lines changed

8 files changed

+12
-7
lines changed

.github/workflows/test-renode-fastmath.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
renode_automated_fastmath:
1111
runs-on: ubuntu-22.04
12-
timeout-minutes: 15
12+
timeout-minutes: 25
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/test-renode-noasm-smallstack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
renode_automated_noasm_smallstack:
1111
runs-on: ubuntu-22.04
12-
timeout-minutes: 15
12+
timeout-minutes: 25
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/test-renode-noasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
renode_automated_noasm:
1111
runs-on: ubuntu-22.04
12-
timeout-minutes: 15
12+
timeout-minutes: 25
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/test-renode-nrf52.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
renode_automated_base:
1111
runs-on: ubuntu-22.04
12-
timeout-minutes: 15
12+
timeout-minutes: 25
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/test-renode-sha3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
renode_automated_multi_sha:
1111
runs-on: ubuntu-22.04
12-
timeout-minutes: 15
12+
timeout-minutes: 25
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/test-renode-sha384.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
renode_automated_multi_sha:
1111
runs-on: ubuntu-22.04
12-
timeout-minutes: 15
12+
timeout-minutes: 25
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/test-renode-smallstack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
renode_automated_smallstack:
1111
runs-on: ubuntu-22.04
12-
timeout-minutes: 15
12+
timeout-minutes: 25
1313

1414
steps:
1515
- uses: actions/checkout@v4

tools/renode/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ FROM antmicro/renode:1.15.3
22

33
RUN whoami
44
USER root
5+
RUN sed -i \
6+
-e 's|https\?://archive\.ubuntu\.com/ubuntu/\?|http://mirror.arizona.edu/ubuntu/|g' \
7+
-e 's|https\?://security\.ubuntu\.com/ubuntu/\?|http://mirror.arizona.edu/ubuntu/|g' \
8+
-e 's|https\?://[a-z0-9.-]*\.archive\.ubuntu\.com/ubuntu/\?|http://mirror.arizona.edu/ubuntu/|g' \
9+
/etc/apt/sources.list /etc/apt/sources.list.d/*.list 2>/dev/null || true
510
RUN apt-get update
611
RUN apt-get install gcc-arm-none-eabi make -y
712

0 commit comments

Comments
 (0)