Skip to content

Commit

Permalink
Disallow another version and add support for comments in disallowed v…
Browse files Browse the repository at this point in the history
…ersions.
  • Loading branch information
sangaline committed Feb 26, 2024
1 parent d2c042e commit bb992f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
tags=($(./scripts/list-tags.sh ${{ matrix.github_repository }}))
if [[ -f "$disallowed_versions_file" ]]; then
# Filter out disallowed versions
readarray -t filtered_tags < <(printf '%s\n' "${tags[@]}" | grep -vFxf "$disallowed_versions_file")
readarray -t filtered_tags < <(printf '%s\n' "${tags[@]}" | grep -vFxf <(grep -vE '^(#|$)' "$disallowed_versions_file"))
else
filtered_tags=("${tags[@]}")
fi
Expand Down
4 changes: 4 additions & 0 deletions images/nargo/disallowed-versions.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# The API is too different in these early versions.
v0.0.1
v0.0.2
v0.0.3
Expand Down Expand Up @@ -27,4 +28,7 @@ v0.7.0
v0.7.1
v0.8.0
v0.9.0
v0.10.0

# Missing from noirup.
v0.14.0
3 changes: 0 additions & 3 deletions images/nargo/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,3 @@ nargo test

# Print detailed information on a circuit.
nargo info

# Execute the backend binary.
~/.nargo/backends/acvm-backend-barretenberg/backend_binary --version

0 comments on commit bb992f5

Please sign in to comment.