Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
11 changes: 11 additions & 0 deletions docs/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ function build_docs {
cache_upload docs-$hash.tar.gz build
}

function check_generated_refs {
if [ "${CI:-0}" -eq 1 ] && [ $(arch) == arm64 ]; then
echo "Not checking generated docs for arm64 in CI."
return
fi
echo_header "check generated aztec.js reference"
./scripts/aztecjs_reference_generation/update_docs.sh --check
}

function test_cmds {
if [ "${CI:-0}" -eq 1 ] && [ $(arch) == arm64 ]; then
# Not running docs tests for arm64 in CI.
Expand Down Expand Up @@ -130,13 +139,15 @@ case "$cmd" in
"ci")
build_examples
build_docs
check_generated_refs
test
check_orphaned_urls
check_references
;;
"")
build_examples
build_docs
check_generated_refs
check_orphaned_urls
check_references
;;
Expand Down
4 changes: 2 additions & 2 deletions docs/developer_version_config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"mainnet": "v5.0.1",
"testnet": "v5.0.1"
"mainnet": "v5.2.0",
"testnet": "v5.2.0"
}

This file was deleted.

This file was deleted.

Loading
Loading