Browse Source

Update formatting

pull/1345/head
Ross McFarland 3 weeks ago
parent
commit
9f4cb3c12b
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
2 changed files with 17 additions and 0 deletions
  1. +4
    -0
      .changelog/d0b5e364732242f0ad047432783c8474.md
  2. +13
    -0
      script/cibuild-matrix

+ 4
- 0
.changelog/d0b5e364732242f0ad047432783c8474.md View File

@ -0,0 +1,4 @@
---
type: none
---
Update formatting

+ 13
- 0
script/cibuild-matrix View File

@ -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

Loading…
Cancel
Save