diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6f7d158..c17b1dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: run: | sudo apt-get update sudo apt-get install -y lsb-core cmake curl wget libelf-dev - sudo bash -s < <(curl -s https://raw.githubusercontent.com/dutor/nebula-gears/master/install) + sudo bash -s < <(curl -s https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install) sudo install-gcc --version=9.2.0 - name: Checkout Code uses: actions/checkout@v2 diff --git a/README.md b/README.md index c0f3c8f..8f5b9f4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Before starting, serveral dependencies need to installed: The default installation prefix is `/usr/local`, which requires root privilege to write. ```shell -$ URL=https://raw.githubusercontent.com/dutor/nebula-gears/master/install +$ URL=https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install # Install with sudo: $ sudo bash -s < <(curl -s $URL) @@ -70,7 +70,7 @@ Currently, _Nebula_ toolset build consists of GCC and LLVM on various Linux plat * Debian 7/8 for GCC, and Debian 8/9/10 for LLVM ```shell -$ git clone https://github.com/dutor/nebula-gears.git +$ git clone https://github.com/vesoft-inc/nebula-gears.git $ cd nebula-gears/docker/toolset/build # Build GCC and LLVM for all provided platforms diff --git a/docker/toolset/build/Makefile b/docker/toolset/build/Makefile index 0f652ee..457fbaa 100644 --- a/docker/toolset/build/Makefile +++ b/docker/toolset/build/Makefile @@ -23,12 +23,12 @@ endif gcc-%: @echo '******************' Build Nebula Toolset/GCC For $* '********************' - @$(docker_cmd) --rm -it dutor/toolset-build:$* ./build-gcc.sh + @$(docker_cmd) --rm -it vesoft-inc/toolset-build:$* ./build-gcc.sh llvm-%: @echo '******************' Build Nebula Toolset/LLVM For $* '********************' - @$(docker_cmd) --rm -it dutor/toolset-build:$* ./build-llvm.sh + @$(docker_cmd) --rm -it vesoft-inc/toolset-build:$* ./build-llvm.sh gdb-%: @echo '******************' Build Nebula Toolset/GDB For $* '********************' - @$(docker_cmd) --rm -it dutor/toolset-build:$* ./build-gdb.sh + @$(docker_cmd) --rm -it vesoft-inc/toolset-build:$* ./build-gdb.sh diff --git a/docker/toolset/images/Makefile b/docker/toolset/images/Makefile index a80c348..0da0304 100644 --- a/docker/toolset/images/Makefile +++ b/docker/toolset/images/Makefile @@ -6,10 +6,10 @@ all: $(tags) build-%: %.Dockerfile @echo '******************' Build Image $* '********************' - @docker build --no-cache -t dutor/toolset-build:$* -f $*.Dockerfile . + @docker build --no-cache -t vesoft-inc/toolset-build:$* -f $*.Dockerfile . push-%: build-% @echo '******************' Pushing Image $* '********************' - @docker push dutor/toolset-build:$* + @docker push vesoft-inc/toolset-build:$* %: push-% ; diff --git a/docker/toolset/images/centos-6.Dockerfile b/docker/toolset/images/centos-6.Dockerfile index 90ece2e..02485c4 100644 --- a/docker/toolset/images/centos-6.Dockerfile +++ b/docker/toolset/images/centos-6.Dockerfile @@ -28,7 +28,7 @@ RUN yum install -y make \ RUN yum install -y python27 RUN yum install -y pxz || true -ENV NG_URL=https://raw.githubusercontent.com/dutor/nebula-gears/master/install +ENV NG_URL=https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install ENV OSS_UTIL_URL=http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil64 ENV PACKAGE_DIR=/usr/src/nebula-package RUN curl -s ${NG_URL} | bash diff --git a/docker/toolset/images/centos-7.Dockerfile b/docker/toolset/images/centos-7.Dockerfile index c108097..c708116 100644 --- a/docker/toolset/images/centos-7.Dockerfile +++ b/docker/toolset/images/centos-7.Dockerfile @@ -27,7 +27,7 @@ RUN yum install -y make \ RUN yum install -y pxz || true -ENV NG_URL=https://raw.githubusercontent.com/dutor/nebula-gears/master/install +ENV NG_URL=https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install ENV OSS_UTIL_URL=http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil64 ENV PACKAGE_DIR=/usr/src/nebula-package RUN curl -s ${NG_URL} | bash diff --git a/docker/toolset/images/centos-8.Dockerfile b/docker/toolset/images/centos-8.Dockerfile index 8896359..76e3476 100644 --- a/docker/toolset/images/centos-8.Dockerfile +++ b/docker/toolset/images/centos-8.Dockerfile @@ -27,7 +27,7 @@ RUN yum config-manager --set-enabled PowerTools RUN yum update -y RUN yum install -y gperf -ENV NG_URL=https://raw.githubusercontent.com/dutor/nebula-gears/master/install +ENV NG_URL=https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install ENV OSS_UTIL_URL=http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil64 ENV PACKAGE_DIR=/usr/src/nebula-package RUN curl -s ${NG_URL} | bash diff --git a/docker/toolset/images/debian-10.Dockerfile b/docker/toolset/images/debian-10.Dockerfile index 0a49459..308fe23 100644 --- a/docker/toolset/images/debian-10.Dockerfile +++ b/docker/toolset/images/debian-10.Dockerfile @@ -22,7 +22,7 @@ RUN apt-get install -y make \ gperf \ gettext --force-yes -ENV NG_URL=https://raw.githubusercontent.com/dutor/nebula-gears/master/install +ENV NG_URL=https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install ENV OSS_UTIL_URL=http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil64 ENV PACKAGE_DIR=/usr/src/nebula-package RUN set -o pipefail && curl -s ${NG_URL} | bash diff --git a/docker/toolset/images/debian-7.Dockerfile b/docker/toolset/images/debian-7.Dockerfile index 09536c3..1edee31 100644 --- a/docker/toolset/images/debian-7.Dockerfile +++ b/docker/toolset/images/debian-7.Dockerfile @@ -26,7 +26,7 @@ RUN apt-get install -y make \ gperf \ gettext --force-yes -ENV NG_URL=https://raw.githubusercontent.com/dutor/nebula-gears/master/install +ENV NG_URL=https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install ENV OSS_UTIL_URL=http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil64 ENV PACKAGE_DIR=/usr/src/nebula-package RUN set -o pipefail && curl -s ${NG_URL} | bash diff --git a/docker/toolset/images/debian-8.Dockerfile b/docker/toolset/images/debian-8.Dockerfile index ff2bdbf..60067b9 100644 --- a/docker/toolset/images/debian-8.Dockerfile +++ b/docker/toolset/images/debian-8.Dockerfile @@ -25,7 +25,7 @@ RUN apt-get install -y make \ gettext --force-yes RUN apt-get install -y pxz -ENV NG_URL=https://raw.githubusercontent.com/dutor/nebula-gears/master/install +ENV NG_URL=https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install ENV OSS_UTIL_URL=http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil64 ENV PACKAGE_DIR=/usr/src/nebula-package RUN set -o pipefail && curl -s ${NG_URL} | bash diff --git a/docker/toolset/images/debian-9.Dockerfile b/docker/toolset/images/debian-9.Dockerfile index 4888b35..092b170 100644 --- a/docker/toolset/images/debian-9.Dockerfile +++ b/docker/toolset/images/debian-9.Dockerfile @@ -25,7 +25,7 @@ RUN apt-get install -y make \ gperf \ gettext --force-yes -ENV NG_URL=https://raw.githubusercontent.com/dutor/nebula-gears/master/install +ENV NG_URL=https://raw.githubusercontent.com/vesoft-inc/nebula-gears/master/install ENV OSS_UTIL_URL=http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil64 ENV PACKAGE_DIR=/usr/src/nebula-package RUN set -o pipefail && curl -s ${NG_URL} | bash diff --git a/install b/install index 61dce0f..0b89ca6 100755 --- a/install +++ b/install @@ -3,7 +3,7 @@ set -e set -o pipefail -lastest_url=https://github.com/dutor/nebula-gears/releases/latest/download/nebula-gears-installer.sh +lastest_url=https://github.com/vesoft-inc/nebula-gears/releases/latest/download/nebula-gears-installer.sh echo "Start downloading lastest nebula-gears..." curl -Ls $lastest_url -# -o /tmp/nebula-gears-installer-latest.sh diff --git a/scripts/nebula-gears-update b/scripts/nebula-gears-update index 0c09bfa..72cc1a3 100755 --- a/scripts/nebula-gears-update +++ b/scripts/nebula-gears-update @@ -12,7 +12,7 @@ install_prefix=$(dirname $this_dir) share_dir=$install_prefix/share/nebula-gears installed_files_file=$share_dir/installed_files -lastest_url=https://github.com/dutor/nebula-gears/releases/latest/download/nebula-gears-installer.sh +lastest_url=https://github.com/vesoft-inc/nebula-gears/releases/latest/download/nebula-gears-installer.sh [[ -w $install_prefix ]] || { echo "$install_prefix: No permission to write"; exit 1; }