summaryrefslogtreecommitdiffhomepage
path: root/Makefile
AgeCommit message (Collapse)Author
2020-03-11Fix corrupted bazel install errors.Ian Lewis
Previously /tmp/gvisor-website was used for the bazel output_user_root but the host could delete a subset of the files under /tmp causing it to become corrupted. This commit updates the Makefile to use the bazel_user_root directory under the repository root directory for caching bazel packages.
2020-01-17Dedup check commandIan Lewis
2020-01-17Merge branch 'master' into lint-mdIan Lewis
2020-01-14Add --rm to docker run commands.Ian Lewis
2020-01-14Use hugo Docker image in MakefileIan Lewis
Removes the local dependency on hugo for building.
2020-01-14Run npm in Docker image.Ian Lewis
This partially removes the build dependency on node.js.
2020-01-14Build runsc in Docker containerIan Lewis
This removes the build dependency on Bazel.
2019-11-19Update to Go 1.12 runtime.Ian Lewis
Update to the Go 1.12 runtime. - The login option in app.yaml is no longer supported. Check the X-Appengine-Cron http header instead. - Add a 'stage' make target that allows you to easily stage a change.
2019-10-24Added lint-md linter for markdownIan Lewis
2019-10-24Fix links on website.Ian Lewis
2019-08-07Add redirect from old URL.Ian Lewis
- Adds url redirect from old syscall docs url to new url - make server now runs the Go server and implements redirects. - make devserver runs the hugo dev server.
2019-07-10Copy app engine app files in cloudbuildIan Lewis
Fixes website deploy step
2019-07-10Add generate-syscall-docs command.Ian Lewis
Adds a new command to automatically generate the syscall compatibility docs from runsc.
2019-05-07build: fix deploy target for MakefileAdin Scannell
Because the go.mod and related files were not being copying, the packages are resolved within the current $GOROOT, which does not work. This change copies all application files, not just Go source files and app.yaml.
2019-04-12Use HUGO_ENV="production" to avoid noindex headerAdin Scannell
2019-04-05Updated README to be more contributor friendlyIan Lewis
- Remove doc about deploying and running Cloud Builds since that is mostly handled by CI. - Re-organize to have info on contributing first.
2019-03-29Initial commitIan Lewis