Skip to content

Commit

Permalink
Adf
Browse files Browse the repository at this point in the history
  • Loading branch information
joecummings committed Oct 25, 2024
1 parent 754b56e commit 79b7b5b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build_linux_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,15 @@ jobs:
env:
A: ${{ needs.generate-matrix.outputs.matrix }}
run: |
echo ${A["include"]}
# for item in $A["includes"]; do
# python_version=$(echo "$item" | jq -r '.python_version')
# echo "Python version: $python_version"
# done
matrix_builds = ${A["include"]}
# new_matrix_builds = ()
for item in ${matrix_builds[@]}; do
echo "$item"
# python_version = ${item["python_version"]}
# if "$python_version" != "3.13"; then
# new_matrix_builds+=$item
# fi
done
# build:
# if: ${{ needs.generate-matrix.outputs.python_version != '3.9' }}
# needs: generate-matrix
Expand Down

0 comments on commit 79b7b5b

Please sign in to comment.