File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 77
77
tar xaf ocaml.tar.zst -C "$HOME"
78
78
rm -f ocaml.tar.zst
79
79
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
80
+ sudo apt-get update -y
80
81
sudo apt-get install -y gcc-mingw-w64-x86-64
81
82
- name : Checkout OCaml
82
83
uses : actions/checkout@v4
@@ -145,6 +146,7 @@ jobs:
145
146
tar xaf ocaml.tar.zst -C "$HOME"
146
147
rm -f ocaml.tar.zst
147
148
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
149
+ sudo apt-get update -y
148
150
sudo apt-get install -y gcc-aarch64-linux-gnu qemu-user
149
151
- name : Checkout OCaml
150
152
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -104,7 +104,8 @@ jobs:
104
104
- name : Packages
105
105
if : matrix.dependencies != ''
106
106
run : |
107
- sudo apt-get update -y && sudo apt-get install -y ${{ matrix.dependencies }}
107
+ sudo apt-get update -y
108
+ sudo apt-get install -y ${{ matrix.dependencies }}
108
109
- name : Run the testsuite
109
110
if : matrix.id == 'normal'
110
111
run : |
@@ -216,7 +217,7 @@ jobs:
216
217
steps :
217
218
- name : OS Dependencies
218
219
run : |
219
- apt-get update
220
+ apt-get update -y
220
221
apt-get install -y git gcc make parallel
221
222
adduser --disabled-password --gecos '' ocaml
222
223
- name : Checkout
Original file line number Diff line number Diff line change 33
33
with :
34
34
persist-credentials : false
35
35
- name : Install libunwind
36
- run : sudo apt install -y libunwind-dev
36
+ run : |
37
+ sudo apt-get update -y
38
+ sudo apt-get install -y libunwind-dev
37
39
# This temporary workaround reduces the number of random bits for the base
38
40
# address of vma regions for mmap allocation, to avoid the
39
41
# "FATAL: ThreadSanitizer: unexpected memory mapping" TSan error.
85
87
- name : Packages
86
88
if : matrix.dependencies != ''
87
89
run : |
88
- sudo apt-get update -y && sudo apt-get install -y ${{ matrix.dependencies }}
90
+ sudo apt-get update -y
91
+ sudo apt-get install -y ${{ matrix.dependencies }}
89
92
- name : Run the testsuite
90
93
if : matrix.id == 'normal'
91
94
# Run testsuite with 30-minute timeout per test
You can’t perform that action at this time.
0 commit comments