Skip to content

Commit

Permalink
Add config file
Browse files Browse the repository at this point in the history
Config yaml filed
  • Loading branch information
bnhassin authored May 27, 2020
1 parent a931f1f commit 2a3293e
Showing 1 changed file with 148 additions and 0 deletions.
148 changes: 148 additions & 0 deletions .github/workflows/bnhassin-patch-1/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
{
"language": "c",
"os": [
"linux",
"osx"
],
"sudo": false,
"cache": {
"directories": [
"$HOME/travis-cache"
]
},
"compiler": [
"clang",
"gcc"
],
"addons": {
"apt": {
"sources": [
{
"name": "ubuntu-toolchain-r-test"
}
],
"packages": [
"language-pack-is",
"git-svn",
"apache2",
"gcc-8"
]
}
},
"before_install": [
"ci/install-dependencies.sh"
],
"script": [
"ci/run-build-and-tests.sh"
],
"after_failure": [
"ci/print-test-failures.sh"
],
"notifications": {
"email": [
{
"enabled": false
}
]
},
"jobs": {
"include": [
{
"env": [
{
"jobname": "GETTEXT_POISON"
}
],
"os": "linux",
"before_install": [
]
},
{
"env": [
{
"jobname": "Windows"
}
],
"os": "linux",
"before_install": [

],
"script": [
"test \"$TRAVIS_REPO_SLUG\" != \"git/git\" || ci/run-windows-build.sh $TRAVIS_BRANCH $(git rev-parse HEAD)\n"
],
"after_failure": [

]
},
{
"env": [
{
"jobname": "Linux32"
}
],
"os": "linux",
"services": [
"docker"
],
"before_install": [

],
"script": [
"ci/run-linux32-docker.sh"
]
},
{
"env": [
{
"jobname": "StaticAnalysis"
}
],
"os": "linux",
"addons": {
"apt": {
"packages": [
"coccinelle"
]
}
},
"before_install": [

],
"script": [
"ci/run-static-analysis.sh"
],
"after_failure": [

]
},
{
"env": [
{
"jobname": "Documentation"
}
],
"os": "linux",
"addons": {
"apt": {
"packages": [
"asciidoc",
"xmlto"
]
}
},
"before_install": [

],
"script": [
"ci/test-documentation.sh"
],
"after_failure": [

]
}
]

},
"group": "stable",
"dist": "xenial"
}

0 comments on commit 2a3293e

Please sign in to comment.