Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs and minor CI enhancements #233

Merged
merged 3 commits into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
build:
strategy:
matrix:
go: ['1.13', '1.14', '1.15']
go: ['1.13', '1.14', '1.15', '1.16']
# Build all variants regardless of failures
fail-fast: false

Expand All @@ -42,7 +42,9 @@ jobs:
fetch-depth: 21

- name: Check code
uses: Jerome1337/[email protected]
uses: golangci/golangci-lint-action@v2
with:
args: --timeout 5m

- name: Get dependencies
run: |
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ The details of the vHive architecture can be found in our ASPLOS'21 paper

* [Slides](docs/talks/vHive_REAP_@AWS_04_02_2021.pdf) from
[Dmitrii](http://homepages.inf.ed.ac.uk/s1373190/)'s talk at AWS on Feb, 4th 2021.
* ASPLOS'21 talks on YouTube:
[short](https://www.youtube.com/watch?v=w1vGb0X0SUQ), [long](https://www.youtube.com/watch?v=zfLd_MTGOA8).


## Referencing our work
Expand Down
5 changes: 2 additions & 3 deletions docs/developers_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@

You can use the image to build/test/develop vHive inside a container. This image is preconfigured to run a single node Kubernetes cluster inside a container and contains packages to setup vHive on top of it.
```bash
git clone -b custom_docker_params_for_vHive https:/ease-lab/kind
# build kind
cd kind && go build
# Set up the host (the same script as for the self-hosted GitHub CI runner)
./scripts/github_runner/setup_runner_host.sh
ustiugov marked this conversation as resolved.
Show resolved Hide resolved
# pull latest image
docker pull vhiveease/vhive_dev_env
# Start a container
Expand Down