Skip to content
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
2 changes: 1 addition & 1 deletion utils/build/docker/python/armv7.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm32v7/python:latest
FROM arm32v7/python:3.9

# print versions
RUN python --version && curl --version
Expand Down
2 changes: 1 addition & 1 deletion utils/build/docker/python/flask-poc.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:latest
FROM python:3.9

# print versions
RUN python --version && curl --version
Expand Down
2 changes: 1 addition & 1 deletion utils/build/docker/python/uwsgi-poc.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:latest
FROM python:3.9

# print versions
RUN python --version && curl --version
Expand Down
6 changes: 3 additions & 3 deletions utils/scripts/load-binary.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ elif [ "$TARGET" = "python" ]; then
# sudo apt-get install unzip
# sudo apt-get install jq

curl "https://api.github.com/repos/$OWNER/$REPO/actions/workflows/build_deploy.yml/runs?branch=master&event=schedule&per_page=1" > workflows.json
curl --silent "https://api.github.com/repos/$OWNER/$REPO/actions/workflows/build_deploy.yml/runs?branch=master&event=schedule&per_page=1" > workflows.json

ARTIFACT_URL=$(jq -r '.workflow_runs[0].artifacts_url' workflows.json)
echo "Load $ARTIFACT_URL"
curl "$ARTIFACT_URL" > artifacts.json
curl --silent "$ARTIFACT_URL" > artifacts.json

ARCHIVE_URL=$(jq -r '.artifacts[0].archive_download_url' artifacts.json)
echo "Load $ARCHIVE_URL"
curl -H "Authorization: token $GH_TOKEN" -L "$ARCHIVE_URL" --output artifacts.zip
curl --silent -H "Authorization: token $GH_TOKEN" -L "$ARCHIVE_URL" --output artifacts.zip

mkdir -p artifacts/
unzip artifacts.zip -d artifacts/
Expand Down