Skip to content

Commit 137fb2d

Browse files
committed
ci: remove gdb
1 parent 5b364ce commit 137fb2d

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,6 @@ jobs:
110110
# https://github.com/actions/runner/issues/2058
111111
run: |
112112
echo "TMPDIR=${GITHUB_WORKSPACE}/tmp" >> ${GITHUB_ENV}
113-
- name: Install GDB
114-
run: |
115-
apt update
116-
apt install -y gdb
117113
- uses: actions/checkout@v4
118114
- name: Create TMPDIR
119115
run: |
@@ -161,15 +157,10 @@ jobs:
161157
- name: "Run Tests"
162158
timeout-minutes: 60
163159
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}
173164
id: run_tests
174165
env:
175166
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager

0 commit comments

Comments
 (0)