add MirBSD-or-CC0 licence tags to all scripts #49
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": { | |
"i386-default": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"i386-default-asan": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh asan" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"i386-dietlibc": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh dietlibc" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"i386-gccsnapshot": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh gccss -std=${{ matrix.std }}" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true, | |
"matrix": { | |
"std": [ | |
"DEFAULT", | |
"gnu23", | |
"gnu++23", | |
"gnu++26" | |
] | |
} | |
} | |
}, | |
"i386-klibc": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh klibc" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"i386-lfs": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh lfs" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"i386-lfs-asan": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh lfs asan" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"i386-time64": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh time64" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"i386-time64-asan": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh time64 asan" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
}, | |
"i386-time64-asan-ss1": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"uses": "docker://i386/debian:sid-slim", | |
"with": { | |
"args": "sh .extra/i386.sh time64 asan ss1" | |
} | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
} | |
}, | |
"name": "deb-i386", | |
"on": { | |
"push": { | |
"branches": [ | |
"GHA" | |
] | |
}, | |
"workflow_dispatch": null | |
} | |
} |