You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Build tooling updates and fixes.
I stared with documenting how to regenerate protos, and found a few
things that were blocking release, and also was just broken.
So this PR includes:
* Documenting how to regenerate protos with `cargo` and `make`.
* `make` targets for generating protobuf
* Fixes and updates for build tooling for release.
* Updates to rust version - which aligns with the available darwin
builder image tags.
* Replace `live-server` which broke as unmaintained with `browser-sync`
which is also way better.
* * Fixes for lint issues.
* Rollback to rust 1.77.1
* There's a joseluisq/rust-linux-darwin-builder:1.77.1 image, but no
1.77.0 image 🤷🏻♂️ - so need to update so we can release macos
binaries.
* Can't upgrade to 1.78.0 because of
tikv/pprof-rs#232
# Runs mdbook and cargo doc in the same directory structure as what is hosted on Github pages.
245
-
# Open http://localhost:3000/book/index.html or http://localhost:3000/api/quilkin/index.html after running. Pages will live reload on change.
246
-
# (the .html extension is required for hot reload, but pages will display without it)
251
+
# Open http://localhost:3000/ after running and browse to the docs you are editing. Pages will live reload on change.
247
252
# Use `GITHUB_REF_NAME` (default: `main`) to specify the branch or tag to point Github links to and `QUILKIN_VERSION`
248
253
# (default `$(make version)) to specify which Quilkin version the documentation uses for examples.
249
254
docs: ensure-build-image
250
255
docs: GITHUB_REF_NAME ?= main
251
256
docs: QUILKIN_VERSION ?= $(shell$(MAKE) version)
252
257
docs:
253
-
@echo "📭 Open browser to http://localhost:3000/book/index.html or http://localhost:3000/api/quilkin/index.html (the .html extension is required for hot reload)"
258
+
@echo "📭 Open browser to http://localhost:3000/ and browse as needed"
254
259
docker run -it --rm $(common_rust_args) -p 3000:3000 \
0 commit comments