Skip to content

Commit 4465c04

Browse files
committed
ci: fix job names in cmd/tools/modules/testing/common.v as well
1 parent da09388 commit 4465c04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd/tools/modules/testing/common.v

+3-3
Original file line numberDiff line numberDiff line change
@@ -265,13 +265,13 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
265265
skip_files << 'examples/pendulum-simulation/parallel.v'
266266
skip_files << 'examples/pendulum-simulation/parallel_with_iw.v'
267267
skip_files << 'examples/pendulum-simulation/sequential.v'
268-
if github_job == 'tcc' {
268+
if github_job == 'tcc-windows' {
269269
// TODO: fix these by adding declarations for the missing functions in the prebuilt tcc
270270
skip_files << 'vlib/net/mbedtls/mbedtls_compiles_test.v'
271271
skip_files << 'vlib/net/ssl/ssl_compiles_test.v'
272272
}
273273
}
274-
if runner_os != 'Linux' || github_job != 'tcc' {
274+
if runner_os != 'Linux' || !github_job.starts_with('tcc-') {
275275
if !os.exists('/usr/local/include/wkhtmltox/pdf.h') {
276276
skip_files << 'examples/c_interop_wkhtmltopdf.v' // needs installation of wkhtmltopdf from https://github.com/wkhtmltopdf/packaging/releases
277277
}
@@ -290,7 +290,7 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
290290
skip_files << 'vlib/x/ttf/ttf_test.v'
291291
skip_files << 'vlib/encoding/iconv/iconv_test.v' // needs libiconv to be installed
292292
}
293-
if github_job == 'tests-sanitize-memory-clang' {
293+
if github_job == 'sanitize-memory-clang' {
294294
skip_files << 'vlib/net/openssl/openssl_compiles_test.c.v'
295295
skip_files << 'vlib/crypto/ecdsa/ecdsa_test.v' // requires OpenSSL
296296
skip_files << 'vlib/crypto/ecdsa/util_test.v' // requires OpenSSL

0 commit comments

Comments
 (0)