Skip to content

Commit

Permalink
Provide rsync necessary SSH keys
Browse files Browse the repository at this point in the history
The SSH public keys are in on the node, mount the `known_hosts` file
into the container to allow access to DST.

Also fix the `bdist_wheel`, which is not Python2 compatible.
  • Loading branch information
rustydb committed Jan 31, 2023
1 parent 55a0e0e commit 0aac47d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile.github
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ pipeline {
agent {
docker {
// Mount docker.sock so the clamAV container can run inside of the Docker image, we need to run in a Docker image to get the right os-release file.
args '-u root -v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker --group-add 999'
args '-u root -v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker -v /home/jenkins/.ssh:/root/.ssh -v /home/jenkins/.ssh:/home/jenkins/.ssh --group-add 999'
label "metal-gcp-builder"
reuseNode true
image "${pythonImage}:${PYTHON_VERSION}"
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,5 @@ requires = [
]

[tool.distutils.bdist_wheel]
universal = true
universal = false # This app. is not compatible with Python2.

0 comments on commit 0aac47d

Please sign in to comment.