-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
67 changed files
with
77,727 additions
and
77,710 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,127 +1,127 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eu | ||
|
||
REFERENCE_FILES=( | ||
# lab 1 | ||
src/mrapps/crash.go | ||
src/mrapps/indexer.go | ||
src/mrapps/mtiming.go | ||
src/mrapps/nocrash.go | ||
src/mrapps/rtiming.go | ||
src/mrapps/wc.go | ||
src/main/mrsequential.go | ||
src/main/mrcoordinator.go | ||
src/main/mrworker.go | ||
|
||
# lab 2 | ||
src/raft/persister.go | ||
src/raft/test_test.go | ||
src/raft/config.go | ||
src/labrpc/labrpc.go | ||
|
||
# lab 3 | ||
src/kvraft/test_test.go | ||
src/kvraft/config.go | ||
|
||
# lab 4a | ||
src/shardctrler/test_test.go | ||
src/shardctrler/config.go | ||
|
||
# lab 4b | ||
src/shardkv/test_test.go | ||
src/shardkv/config.go | ||
) | ||
|
||
main() { | ||
upstream="$1" | ||
labnum="$2" | ||
|
||
# make sure we have reference copy of lab, in FETCH_HEAD | ||
git fetch "$upstream" 2>/dev/null || die "unable to git fetch $upstream" | ||
|
||
# copy existing directory | ||
tmpdir="$(mktemp -d)" | ||
find src -type s -delete # cp can't copy sockets | ||
cp -r src "$tmpdir" | ||
orig="$PWD" | ||
cd "$tmpdir" | ||
|
||
# check out reference files | ||
for f in ${REFERENCE_FILES[@]}; do | ||
mkdir -p "$(dirname $f)" | ||
git --git-dir="$orig/.git" show "FETCH_HEAD:$f" > "$f" | ||
done | ||
|
||
case $labnum in | ||
"lab1") check_lab1;; | ||
"lab2a"|"lab2b"|"lab2c"|"lab2d") check_lab2;; | ||
"lab3a"|"lab3b") check_lab3;; | ||
"lab4a") check_lab4a;; | ||
"lab4b") check_lab4b;; | ||
*) die "unknown lab: $labnum";; | ||
esac | ||
|
||
cd | ||
rm -rf "$tmpdir" | ||
} | ||
|
||
check_lab1() { | ||
check_cmd cd src/mrapps | ||
check_cmd go build -buildmode=plugin wc.go | ||
check_cmd go build -buildmode=plugin indexer.go | ||
check_cmd go build -buildmode=plugin mtiming.go | ||
check_cmd go build -buildmode=plugin rtiming.go | ||
check_cmd go build -buildmode=plugin crash.go | ||
check_cmd go build -buildmode=plugin nocrash.go | ||
check_cmd cd ../main | ||
check_cmd go build mrcoordinator.go | ||
check_cmd go build mrworker.go | ||
check_cmd go build mrsequential.go | ||
} | ||
|
||
check_lab2() { | ||
check_cmd cd src/raft | ||
check_cmd go test -c | ||
} | ||
|
||
check_lab3() { | ||
check_cmd cd src/kvraft | ||
check_cmd go test -c | ||
} | ||
|
||
check_lab4a() { | ||
check_cmd cd src/shardctrler | ||
check_cmd go test -c | ||
} | ||
|
||
check_lab4b() { | ||
check_cmd cd src/shardkv | ||
check_cmd go test -c | ||
# also check other labs/parts | ||
cd "$tmpdir" | ||
check_lab4a | ||
cd "$tmpdir" | ||
check_lab3 | ||
cd "$tmpdir" | ||
check_lab2 | ||
} | ||
|
||
check_cmd() { | ||
if ! "$@" >/dev/null 2>&1; then | ||
echo "We tried building your source code with testing-related files reverted to original versions, and the build failed. This copy of your code is preserved in $tmpdir for debugging purposes. Please make sure the code you are trying to hand in does not make changes to test code." >&2 | ||
echo >&2 | ||
echo "The build failed while trying to run the following command:" >&2 | ||
echo >&2 | ||
echo "$ $@" >&2 | ||
echo " (cwd: ${PWD#$tmpdir/})" >&2 | ||
exit 1 | ||
fi | ||
} | ||
|
||
die() { | ||
echo "$1" >&2 | ||
exit 1 | ||
} | ||
|
||
main "$@" | ||
#!/usr/bin/env bash | ||
|
||
set -eu | ||
|
||
REFERENCE_FILES=( | ||
# lab 1 | ||
src/mrapps/crash.go | ||
src/mrapps/indexer.go | ||
src/mrapps/mtiming.go | ||
src/mrapps/nocrash.go | ||
src/mrapps/rtiming.go | ||
src/mrapps/wc.go | ||
src/main/mrsequential.go | ||
src/main/mrcoordinator.go | ||
src/main/mrworker.go | ||
|
||
# lab 2 | ||
src/raft/persister.go | ||
src/raft/test_test.go | ||
src/raft/config.go | ||
src/labrpc/labrpc.go | ||
|
||
# lab 3 | ||
src/kvraft/test_test.go | ||
src/kvraft/config.go | ||
|
||
# lab 4a | ||
src/shardctrler/test_test.go | ||
src/shardctrler/config.go | ||
|
||
# lab 4b | ||
src/shardkv/test_test.go | ||
src/shardkv/config.go | ||
) | ||
|
||
main() { | ||
upstream="$1" | ||
labnum="$2" | ||
|
||
# make sure we have reference copy of lab, in FETCH_HEAD | ||
git fetch "$upstream" 2>/dev/null || die "unable to git fetch $upstream" | ||
|
||
# copy existing directory | ||
tmpdir="$(mktemp -d)" | ||
find src -type s -delete # cp can't copy sockets | ||
cp -r src "$tmpdir" | ||
orig="$PWD" | ||
cd "$tmpdir" | ||
|
||
# check out reference files | ||
for f in ${REFERENCE_FILES[@]}; do | ||
mkdir -p "$(dirname $f)" | ||
git --git-dir="$orig/.git" show "FETCH_HEAD:$f" > "$f" | ||
done | ||
|
||
case $labnum in | ||
"lab1") check_lab1;; | ||
"lab2a"|"lab2b"|"lab2c"|"lab2d") check_lab2;; | ||
"lab3a"|"lab3b") check_lab3;; | ||
"lab4a") check_lab4a;; | ||
"lab4b") check_lab4b;; | ||
*) die "unknown lab: $labnum";; | ||
esac | ||
|
||
cd | ||
rm -rf "$tmpdir" | ||
} | ||
|
||
check_lab1() { | ||
check_cmd cd src/mrapps | ||
check_cmd go build -buildmode=plugin wc.go | ||
check_cmd go build -buildmode=plugin indexer.go | ||
check_cmd go build -buildmode=plugin mtiming.go | ||
check_cmd go build -buildmode=plugin rtiming.go | ||
check_cmd go build -buildmode=plugin crash.go | ||
check_cmd go build -buildmode=plugin nocrash.go | ||
check_cmd cd ../main | ||
check_cmd go build mrcoordinator.go | ||
check_cmd go build mrworker.go | ||
check_cmd go build mrsequential.go | ||
} | ||
|
||
check_lab2() { | ||
check_cmd cd src/raft | ||
check_cmd go test -c | ||
} | ||
|
||
check_lab3() { | ||
check_cmd cd src/kvraft | ||
check_cmd go test -c | ||
} | ||
|
||
check_lab4a() { | ||
check_cmd cd src/shardctrler | ||
check_cmd go test -c | ||
} | ||
|
||
check_lab4b() { | ||
check_cmd cd src/shardkv | ||
check_cmd go test -c | ||
# also check other labs/parts | ||
cd "$tmpdir" | ||
check_lab4a | ||
cd "$tmpdir" | ||
check_lab3 | ||
cd "$tmpdir" | ||
check_lab2 | ||
} | ||
|
||
check_cmd() { | ||
if ! "$@" >/dev/null 2>&1; then | ||
echo "We tried building your source code with testing-related files reverted to original versions, and the build failed. This copy of your code is preserved in $tmpdir for debugging purposes. Please make sure the code you are trying to hand in does not make changes to test code." >&2 | ||
echo >&2 | ||
echo "The build failed while trying to run the following command:" >&2 | ||
echo >&2 | ||
echo "$ $@" >&2 | ||
echo " (cwd: ${PWD#$tmpdir/})" >&2 | ||
exit 1 | ||
fi | ||
} | ||
|
||
die() { | ||
echo "$1" >&2 | ||
exit 1 | ||
} | ||
|
||
main "$@" |
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 |
---|---|---|
@@ -1,28 +1,28 @@ | ||
# This workflow will build a golang project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | ||
|
||
name: Go | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20' | ||
|
||
- name: Build | ||
run: go build -v ./... | ||
|
||
- name: Test | ||
run: go test -v ./... | ||
# This workflow will build a golang project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | ||
|
||
name: Go | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20' | ||
|
||
- name: Build | ||
run: go build -v ./... | ||
|
||
- name: Test | ||
run: go test -v ./... |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 Minxi Yan | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
MIT License | ||
Copyright (c) 2023 Minxi Yan | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.