Version 1.5.6 #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "ppc64le CI", | |
"on": { | |
"push": { | |
"branches": [ "main" ] | |
}, | |
}, | |
"jobs": { | |
"ppc64le": { | |
"name": "CI on ppc64le", | |
"runs-on": "ubuntu-20.04", | |
"strategy": { | |
"fail-fast": false, | |
"matrix": { | |
"name": [ | |
"fedora-python", | |
], | |
"include": [ | |
{ | |
"name": "fedora-python", | |
"toxenv": "py38", | |
"arch": "ppc64le", | |
}, | |
], | |
}, | |
}, | |
"steps": [ | |
{ "uses": "actions/checkout@v2" }, | |
{ | |
"uses": "uraimo/run-on-arch-action@v2.0.5", | |
"with": { | |
"arch": "${{matrix.arch}}", | |
"distro": "fedora_latest", | |
"install": "dnf install -y openssl-devel cargo python3-pip tox\n", | |
"env": "TOXENV: ${{matrix.toxenv}}", | |
"run": "tox", | |
}, | |
}, | |
], | |
}, | |
}, | |
} |