Skip to content

Commit

Permalink
Change URL from judge to judge-server
Browse files Browse the repository at this point in the history
  • Loading branch information
kiritofeng committed Sep 8, 2020
1 parent a2bff1d commit 7fe8974
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .docker/tier1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM dmoj/runtimes-tier1

ARG TAG=master
RUN mkdir /judge && cd /judge && \
curl -L https://github.com/DMOJ/judge/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
curl -L https://github.com/DMOJ/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
pip3 install -e . && \
. ~judge/.profile && \
runuser -u judge -w PATH -- dmoj-autoconf -V > /judge-runtime-paths.yml && \
Expand Down
2 changes: 1 addition & 1 deletion .docker/tier2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM dmoj/runtimes-tier2

ARG TAG=master
RUN mkdir /judge && cd /judge && \
curl -L https://github.com/DMOJ/judge/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
curl -L https://github.com/DMOJ/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
pip3 install -e . && \
. ~judge/.profile && \
runuser -u judge -w PATH -- dmoj-autoconf -V > /judge-runtime-paths.yml && \
Expand Down
2 changes: 1 addition & 1 deletion .docker/tier3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM dmoj/runtimes-tier3

ARG TAG=master
RUN mkdir /judge && cd /judge && \
curl -L https://github.com/DMOJ/judge/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
curl -L https://github.com/DMOJ/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
pip3 install -e . && \
. ~judge/.profile && \
runuser -u judge -w PATH -- dmoj-autoconf -V > /judge-runtime-paths.yml && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The judge implements secure grading on Linux and FreeBSD machines.

| | Linux | FreeBSD |
|------ |------- |--------- |
| x64 | [](https://travis-ci.org/DMOJ/judge) | [](https://ci.dmoj.ca/job/dmoj-judge-freebsd/) |
| x64 | [](https://travis-ci.org/DMOJ/judge-server) | [](https://ci.dmoj.ca/job/dmoj-judge-freebsd/) |
| x86 || ¯\\\_(ツ)\_|
| x32 || — |
| ARM |||
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def unavailable(self, e):

author='DMOJ Team',
author_email='[email protected]',
url='https://github.com/DMOJ/judge',
url='https://github.com/DMOJ/judge-server',
description='The judge component of the DMOJ: Modern Online Judge platform',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 7fe8974

Please sign in to comment.