From fc1576d5cfdf1a4af20cffbc7fc9e7290055c039 Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Tue, 14 Mar 2023 22:59:37 -0700 Subject: [PATCH] [ci] Switch dartsim/dart-dev to jslee02/dart-dev --- .devcontainer/Dockerfile | 2 +- .github/workflows/api_doc.yml | 2 +- .github/workflows/ci_archlinux.yml | 4 ++-- .github/workflows/ci_ubuntu.yml | 4 ++-- pyproject.toml | 8 ++++---- tools/run | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index b2711c38c6035..7da27ee752882 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1 +1 @@ -FROM dartsim/dart-dev:ubuntu-jammy-v7.0 +FROM jslee02/dart-dev:ubuntu-jammy-v7.0 diff --git a/.github/workflows/api_doc.yml b/.github/workflows/api_doc.yml index 5cb7af575a9f6..abab705c3519f 100644 --- a/.github/workflows/api_doc.yml +++ b/.github/workflows/api_doc.yml @@ -15,7 +15,7 @@ jobs: name: API Documentation runs-on: ubuntu-latest env: - DART_DEV_IMAGE: dartsim/dart-dev + DART_DEV_IMAGE: jslee02/dart-dev DOCKER_TAG: bionic-docs BUILD_TYPE: Release COMPILER: gcc diff --git a/.github/workflows/ci_archlinux.yml b/.github/workflows/ci_archlinux.yml index f110fc5e156a2..d39e027c079a8 100644 --- a/.github/workflows/ci_archlinux.yml +++ b/.github/workflows/ci_archlinux.yml @@ -28,8 +28,8 @@ jobs: build_dartpy: [ON] enable_simd: [OFF] env: - # Hosted on: https://hub.docker.com/repository/docker/dartsim/dart-dev - DART_DEV_IMAGE: dartsim/dart-dev + # Hosted on: https://hub.docker.com/repository/docker/jslee02/dart-dev + DART_DEV_IMAGE: jslee02/dart-dev DOCKER_TAG: ${{ matrix.os }}-v7.0 PLATFORM: ${{ matrix.platform }} COMPILER: ${{ matrix.compiler }} diff --git a/.github/workflows/ci_ubuntu.yml b/.github/workflows/ci_ubuntu.yml index 2f4173bee0f84..0cb386b63eb49 100644 --- a/.github/workflows/ci_ubuntu.yml +++ b/.github/workflows/ci_ubuntu.yml @@ -38,8 +38,8 @@ jobs: build_dartpy: ON enable_simd: ON env: - # Hosted on: https://hub.docker.com/repository/docker/dartsim/dart-dev - DART_DEV_IMAGE: dartsim/dart-dev + # Hosted on: https://hub.docker.com/repository/docker/jslee02/dart-dev + DART_DEV_IMAGE: jslee02/dart-dev DOCKER_TAG: ${{ matrix.os }}-v7.0 COMPILER: gcc BUILD_TYPE: ${{ matrix.build_type }} diff --git a/pyproject.toml b/pyproject.toml index 87752f0e325fc..db2aa77a809d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,10 +29,10 @@ testpaths = ["tests"] # https://cibuildwheel.readthedocs.io/en/stable/options/#before-all [tool.cibuildwheel] -manylinux-x86_64-image = "dartsim/dart-dev:manylinux2014_x86_64-v7.0" -manylinux-aarch64-image = "dartsim/dart-dev:manylinux2014_aarch64-v7.0" -manylinux-pypy_x86_64-image = "dartsim/dart-dev:manylinux2014_x86_64-v7.0" -manylinux-pypy_aarch64-image = "dartsim/dart-dev:manylinux2014_aarch64-v7.0" +manylinux-x86_64-image = "jslee02/dart-dev:manylinux2014_x86_64-v7.0" +manylinux-aarch64-image = "jslee02/dart-dev:manylinux2014_aarch64-v7.0" +manylinux-pypy_x86_64-image = "jslee02/dart-dev:manylinux2014_x86_64-v7.0" +manylinux-pypy_aarch64-image = "jslee02/dart-dev:manylinux2014_aarch64-v7.0" test-requires = "pytest" test-command = "pytest {project}/python/tests" # https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip diff --git a/tools/run b/tools/run index be795f136fda2..7b9d68212bc4c 100755 --- a/tools/run +++ b/tools/run @@ -103,7 +103,7 @@ while [ $# -gt 0 ]; do done full_image_name_deploy=dartsim/dart:$os-$dart_version -full_image_name_dev=dartsim/dart-dev:$os-$dart_version +full_image_name_dev=jslee02/dart-dev:$os-$dart_version if [ "$build_test" = true ]; then test_command="&& make -j$num_cores tests && ctest --output-on-failure"