locales had a split to i18ndata in potato (only) #59
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": { | |
"analyse": { | |
"permissions": { | |
"actions": "read", | |
"contents": "read", | |
"security-events": "write" | |
}, | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"name": "Cancel previous runs", | |
"uses": "styfle/[email protected]", | |
"with": { | |
"access_token": "${{ github.token }}", | |
"all_but_latest": true | |
} | |
}, | |
{ | |
"uses": "actions/[email protected]" | |
}, | |
{ | |
"run": "(git gc --quiet || :)" | |
}, | |
{ | |
"name": "Initialise CodeQL", | |
"uses": "github/codeql-action/init@v3", | |
"with": { | |
"languages": "cpp" | |
} | |
}, | |
{ | |
"run": "tryshell=bash; nextshell=dash; set -ex; rm -rf build; mkdir build; flag=; for dir in mksh lksh; do mkdir build/$dir; cd build/$dir; test -z \"$flag\" || cp ../../.extra/printf.c .; $tryshell ../../Build.sh $flag -r -c trace; if script -qc true >/dev/null 2>&1; then script -qef -c './test.sh'; else script -q typescript ./test.sh; fi; ./?ksh ../../FAQ2HTML.sh; cd ../..; tryshell=$nextshell; flag=-L; USE_PRINTF_BUILTIN=1; export USE_PRINTF_BUILTIN; CPPFLAGS=\"$CPPFLAGS -DMKSH_BINSHPOSIX -DMKSH_BINSHREDUCED\"; export CPPFLAGS; done; for x in build/*/*.trace; do echo; echo === $x; echo; cat $x; done; echo; echo Alles gut." | |
}, | |
{ | |
"name": "Perform CodeQL Analysis", | |
"uses": "github/codeql-action/analyze@v3" | |
} | |
], | |
"strategy": { | |
"fail-fast": true | |
} | |
} | |
}, | |
"name": "CodeQL", | |
"on": { | |
"push": { | |
"branches": [ | |
"travis-ci" | |
] | |
}, | |
"workflow_dispatch": null | |
} | |
} |