Ross McFarland
3 weeks ago
No known key found for this signature in database
GPG Key ID: 943B179E15D3B22A
2 changed files with
17 additions and
0 deletions
-
.changelog/d0b5e364732242f0ad047432783c8474.md
-
script/cibuild-matrix
|
|
|
@ -0,0 +1,4 @@ |
|
|
|
--- |
|
|
|
type: none |
|
|
|
--- |
|
|
|
Update formatting |
|
|
|
@ -0,0 +1,13 @@ |
|
|
|
#!/bin/bash |
|
|
|
|
|
|
|
set -e |
|
|
|
|
|
|
|
VERS="$1" |
|
|
|
if [ -z "$VERS" ]; then |
|
|
|
VERS=$(jq -r '.python_versions_active[]' .ci-config.json) |
|
|
|
fi |
|
|
|
|
|
|
|
for ver in $VERS; do |
|
|
|
echo "Python version ${ver}" |
|
|
|
docker run --rm -v $(pwd):/source:z python:$ver /bin/sh -c 'cp -r /source /octodns && cd /octodns && ./script/cibuild' |
|
|
|
done |