Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@
// 'python3 jenkins/generate.py'
// Note: This timestamp is here to ensure that updates to the Jenkinsfile are
// always rebased on main before merging:
// Generated at 2022-05-11T16:27:38.745360
// Generated at 2022-05-13T12:39:39.064143

import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
// NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
ci_lint = 'tlcpack/ci-lint:20220505-060045-500703308'
ci_gpu = 'tlcpack/ci-gpu:20220505-060045-500703308'
ci_cpu = 'tlcpack/ci-cpu:20220505-060045-500703308'
ci_wasm = 'tlcpack/ci-wasm:20220505-060045-500703308'
ci_i386 = 'tlcpack/ci-i386:20220505-060045-500703308'
ci_qemu = 'tlcpack/ci-qemu:20220505-060045-500703308'
ci_arm = 'tlcpack/ci-arm:20220505-060045-500703308'
ci_hexagon = 'tlcpack/ci-hexagon:20220505-060045-500703308'
ci_lint = 'tlcpack/ci-lint:20220513-055910-fa834f67e'
ci_gpu = 'tlcpack/ci-gpu:20220513-055910-fa834f67e'
ci_cpu = 'tlcpack/ci-cpu:20220513-055910-fa834f67e'
ci_wasm = 'tlcpack/ci-wasm:20220513-055910-fa834f67e'
ci_i386 = 'tlcpack/ci-i386:20220513-055910-fa834f67e'
ci_qemu = 'tlcpack/ci-qemu:20220513-055910-fa834f67e'
ci_arm = 'tlcpack/ci-arm:20220513-055910-fa834f67e'
ci_hexagon = 'tlcpack/ci-hexagon:20220513-055910-fa834f67e'
// <--- End of regex-scanned config.

// Parameters to allow overriding (in Jenkins UI), the images
Expand Down
16 changes: 8 additions & 8 deletions jenkins/Jenkinsfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
{% import 'jenkins/macros.j2' as m with context -%}

// NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
ci_lint = 'tlcpack/ci-lint:20220505-060045-500703308'
ci_gpu = 'tlcpack/ci-gpu:20220505-060045-500703308'
ci_cpu = 'tlcpack/ci-cpu:20220505-060045-500703308'
ci_wasm = 'tlcpack/ci-wasm:20220505-060045-500703308'
ci_i386 = 'tlcpack/ci-i386:20220505-060045-500703308'
ci_qemu = 'tlcpack/ci-qemu:20220505-060045-500703308'
ci_arm = 'tlcpack/ci-arm:20220505-060045-500703308'
ci_hexagon = 'tlcpack/ci-hexagon:20220505-060045-500703308'
ci_lint = 'tlcpack/ci-lint:20220513-055910-fa834f67e'
ci_gpu = 'tlcpack/ci-gpu:20220513-055910-fa834f67e'
ci_cpu = 'tlcpack/ci-cpu:20220513-055910-fa834f67e'
ci_wasm = 'tlcpack/ci-wasm:20220513-055910-fa834f67e'
ci_i386 = 'tlcpack/ci-i386:20220513-055910-fa834f67e'
ci_qemu = 'tlcpack/ci-qemu:20220513-055910-fa834f67e'
ci_arm = 'tlcpack/ci-arm:20220513-055910-fa834f67e'
ci_hexagon = 'tlcpack/ci-hexagon:20220513-055910-fa834f67e'
// <--- End of regex-scanned config.

// Parameters to allow overriding (in Jenkins UI), the images
Expand Down
1 change: 1 addition & 0 deletions tests/python/unittest/test_target_codegen_llvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,7 @@ def make_call_extern(caller, callee):


@tvm.testing.requires_llvm
@tvm.testing.skip_if_32bit
def test_llvm_import():
"""all-platform-minimal-test: check shell dependent clang behavior."""
# extern "C" is necessary to get the correct signature
Expand Down