File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -110,10 +110,6 @@ jobs:
110
110
# https://github.com/actions/runner/issues/2058
111
111
run : |
112
112
echo "TMPDIR=${GITHUB_WORKSPACE}/tmp" >> ${GITHUB_ENV}
113
- - name : Install GDB
114
- run : |
115
- apt update
116
- apt install -y gdb
117
113
- uses : actions/checkout@v4
118
114
- name : Create TMPDIR
119
115
run : |
@@ -161,15 +157,10 @@ jobs:
161
157
- name : " Run Tests"
162
158
timeout-minutes : 60
163
159
run : |
164
- echo 'run' > gdb_cmds
165
- echo 'bt' >> gdb_cmds
166
- echo 'quit' >> gdb_cmds
167
- gdb -q -batch -x gdb_cmds --args julia --color=yes --code-coverage=user --depwarn=yes --project=. -e '
168
- import Pkg;
169
- Pkg.Registry.update();
170
- Pkg.test(; coverage="user");
171
- '
172
- # shell: julia --color=yes --code-coverage=user --depwarn=yes --project=. {0}
160
+ import Pkg
161
+ Pkg.Registry.update()
162
+ Pkg.test(; coverage="user")
163
+ shell : julia --color=yes --code-coverage=user --depwarn=yes --project=. {0}
173
164
id : run_tests
174
165
env :
175
166
JULIA_PKG_SERVER_REGISTRY_PREFERENCE : eager
You can’t perform that action at this time.
0 commit comments