deb-eol #32
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
{ | |
"jobs": { | |
"v2_1-slink": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"run": "docker pull debian/eol:slink\ndocker run --privileged --workdir /github/workspace --rm -e HOME -v /home/runner/work/_temp/_github_home:/github/home -v /home/runner/work/_temp/_github_workflow:/github/workflow -v \"$PWD\":/github/workspace debian/eol:slink sh .extra/debeol.sh slink 2.1" | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v2_2-potato": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:potato", | |
"with": { | |
"args": "sh .extra/debeol.sh potato 2.2" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v3_0-woody": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:woody", | |
"with": { | |
"args": "sh .extra/debeol.sh woody 3.0" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v3_1-sarge": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:sarge", | |
"with": { | |
"args": "sh .extra/debeol.sh sarge 3.1" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v4-etch": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:etch", | |
"with": { | |
"args": "sh .extra/debeol.sh etch 4" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v5-lenny": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:lenny", | |
"with": { | |
"args": "sh .extra/debeol.sh lenny 5" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v6-squeeze": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:squeeze", | |
"with": { | |
"args": "sh .extra/debeol.sh squeeze 6" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v7-wheezy": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:wheezy", | |
"with": { | |
"args": "sh .extra/debeol.sh wheezy 7" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v8-jessie": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:jessie", | |
"with": { | |
"args": "sh .extra/debeol.sh jessie 8" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"v9-stretch": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://debian/eol:stretch", | |
"with": { | |
"args": "sh .extra/debeol.sh stretch 9" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
} | |
}, | |
"name": "deb-eol", | |
"on": { | |
"workflow_dispatch": null | |
} | |
} |