Merge branch 'master' into sync-2024Jan24

This commit is contained in:
Hui Liu
2024-02-01 14:41:48 -08:00
99 changed files with 2476 additions and 283 deletions

View File

@@ -0,0 +1,8 @@
FROM i386/debian:sid
ENV DEBIAN_FRONTEND noninteractive
SHELL ["/bin/bash", "-c"] # Use Bash as shell
RUN \
apt-get update && \
apt-get install -y tar unzip wget git build-essential ninja-build cmake

View File

@@ -7,6 +7,7 @@ needed, run CMake .
If this is a RC release, the version for JVM packages has the form
<major>.<minor>.<patch>-RC1
"""
import argparse
import datetime
import os

View File

@@ -1,4 +1,5 @@
"""Utilities for packaging R code and running tests."""
import argparse
import os
import shutil

View File

@@ -1,4 +1,5 @@
"""Utilities for the CI."""
import os
from datetime import datetime, timedelta
from functools import wraps