appveyor.yml: image: Visual Studio 2022 #280
Merged
Travis CI / Travis CI - Pull Request
succeeded
Mar 26, 2024 in 5m 41s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #280 appveyor.yml: image: Visual Studio 2022.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has two jobs, running in parallel.
Job | Compiler | ENV | OS | State |
---|---|---|---|---|
453.1 | g++ | GITHUB_TOKEN=[secure] | Linux | passed |
453.2 | g++ | GITHUB_TOKEN=[secure] | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | C |
Operating System | Linux (Xenial) |
Build Configuration
{
"language": "c",
"os": [
"linux"
],
"dist": "xenial",
"git": {
"submodules": true
},
"env": [
"global=GITHUB_TOKEN=[secure]"
],
"addons": {
"apt": {
"sources": [
{
"name": "ubuntu-toolchain-r-test"
}
],
"packages": [
"xutils-dev",
"libxi-dev",
"libxxf86vm-dev",
"x11proto-xf86vidmode-dev",
"mesa-utils",
"xvfb",
"libgl1-mesa-dri",
"libglapi-mesa",
"libosmesa6",
"musl-dev",
"libgl1-mesa-dev"
]
}
},
"before_install": [
"./scripts/before_install.sh"
],
"install": [
"./scripts/install.sh"
],
"before_script": [
"ulimit -c unlimited -S",
"ulimit -a"
],
"script": [
"./scripts/test.sh"
],
"after_success": [
"./scripts/after_success.sh"
],
"jobs": {
"include": [
{
"os": "linux",
"sudo": true,
"dist": "focal",
"compiler": "g++",
"env": [
{
"NODE_VERSION": "18"
}
]
},
{
"os": "linux",
"sudo": true,
"dist": "focal",
"compiler": "g++",
"env": [
{
"NODE_VERSION": "20"
}
]
}
]
}
}
Loading