Skip to content

Commit

Permalink
TEMPORARY: pins PR commit for securedrop-proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
Conor Schaefer committed Apr 13, 2021
1 parent fceee6d commit 3c53f5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ common-steps:
command: |
mkdir ~/packaging && cd ~/packaging
git clone https://github.com/freedomofpress/securedrop-proxy.git
git -C securedrop-proxy checkout update_pyyaml_wheel
export PKG_NAME="securedrop-proxy"
# Enable access to this env var in subsequent run steps
echo $PKG_NAME > ~/packaging/sd_package_name
Expand Down
2 changes: 2 additions & 0 deletions scripts/build-sync-wheels
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ def main():
git_clone_directory = tempfile.mkdtemp(prefix=os.path.basename(args.p))
cmd = f"git clone {args.p} {git_clone_directory}".split()
subprocess.check_call(cmd)
if "securedrop-proxy" in args.p:
subprocess.check_call(f"git -C {git_clone_directory} checkout update_pyyaml_wheel".split())
args.p = git_clone_directory
else:
git_clone_directory = ""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_reproducible_debian_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
PACKAGE_BUILD_TARGETS = {
"securedrop-client": "main",
"securedrop-log": "main",
"securedrop-proxy": "main",
"securedrop-proxy": "update_pyyaml_wheel",
"securedrop-export": "main",
}

Expand Down

0 comments on commit 3c53f5f

Please sign in to comment.