-
Notifications
You must be signed in to change notification settings - Fork 119
42 lines (42 loc) · 1.22 KB
/
ppc64le.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"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@v4" },
{
"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",
},
},
],
},
},
}