-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11d5e20
commit a3de075
Showing
8 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM frolvlad/alpine-go | ||
|
||
RUN apk add --no-cache bash | ||
|
||
COPY ./compile.sh /bin/compile.sh | ||
COPY ./run.sh /bin/run.sh | ||
|
||
RUN chmod 777 /bin/compile.sh; \ | ||
chmod 777 /bin/run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#!/usr/bin/env bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
chmod 777 program.go | ||
go run program.go < run.stdin 1> run.stdout 2> run.stderr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package main; | ||
|
||
import "fmt"; | ||
|
||
func main() { | ||
var input string | ||
fmt.Scanf("%s", &input) | ||
fmt.Println("Hello " + input) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
World |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env bash | ||
pushd $(dirname "$0") | ||
DIR=$(pwd) | ||
RUNBOX="${DIR}/runbox" | ||
|
||
echo $RUNBOX | ||
# Create runbox | ||
mkdir -p $RUNBOX | ||
|
||
# Copy source to runbox | ||
cp $DIR/program.go $RUNBOX/program.go | ||
cp $DIR/run.stdin $RUNBOX/run.stdin | ||
|
||
# Test Compile | ||
docker run \ | ||
--cpus="1" \ | ||
--memory="100m" \ | ||
--ulimit nofile=64:64 \ | ||
--rm \ | ||
--read-only \ | ||
-v "$RUNBOX":/usr/src/runbox \ | ||
-v "$RUNBOX":/tmp \ | ||
-w /usr/src/runbox codingblocks/judge-worker-golang \ | ||
bash -c "/bin/compile.sh && /bin/run.sh" | ||
|
||
ls -lh ${RUNBOX} | ||
|
||
expected="Hello World" | ||
actual="$(cat ${RUNBOX}/run.stdout)" | ||
if [ "$expected" == "$actual" ] ;then | ||
: | ||
else | ||
echo "MISMATCH: Expected = $expected; Actual = $actual" | ||
exit 1 | ||
fi | ||
|
||
# Delete runbox | ||
rm -rf $RUNBOX |