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

fix: docs rebuild patterns #11191

Merged
merged 5 commits into from
Jan 13, 2025
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ bootstrap-noir-bb:
git remote add origin https://github.com/aztecprotocol/aztec-packages >/dev/null 2>&1 &&
(git fetch --depth 1 origin $EARTHLY_GIT_HASH >/dev/null 2>&1 || (echo "The commit was not pushed, run aborted." && exit 1)) &&
git reset --hard FETCH_HEAD >/dev/null 2>&1 &&
./build-images/adhoc-installs.sh &&
DENOISE=1 CI=1 ./noir/bootstrap.sh fast &&
DENOISE=1 CI=1 ./barretenberg/bootstrap.sh fast &&
mv $(ls -A) /usr/src'
Expand Down
8 changes: 8 additions & 0 deletions build-images/adhoc-installs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# The correct action to take in case of a missing installation is to update the build images.
# However, they will not be updated automatically going forward.
# If unable to ping Charlie or Adam to update the AMIs that have the build image (along with the build images themselves)
# this is a reasonable temporary measure.
set -eu
apt update
# for docs:
apt install -y libvips-dev
4 changes: 2 additions & 2 deletions docs/.rebuild_patterns
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
^docs/src
^docs/scripts
^docs/static
^docs/*.js
^docs/*.json
^docs/.*\.js
^docs/.*\.json
Loading