X Tutup
The Wayback Machine - https://web.archive.org/web/20220405133252/https://github.com/nodejs/node-addon-api/pull/628/checks
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Added Object::New() taking a list of properties. #628

Closed
wants to merge 2 commits into from

Added documentation

40ed814
Select commit
Closed

[WIP] Added Object::New() taking a list of properties. #628

Added documentation
40ed814
Select commit
Travis CI / Travis CI - Pull Request succeeded Dec 13, 2019 in 31m 46s

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 #628 [WIP] Added Object::New() taking a list of properties..
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has 24 jobs, running in parallel.

Job Compiler ENV OS State Notes
135.1 clang NODEJS_VERSION=node/8 Linux passed
135.2 gcc NODEJS_VERSION=node/8 Linux passed
135.3 clang NODEJS_VERSION=node/10 Linux passed
135.4 gcc NODEJS_VERSION=node/10 Linux passed
135.5 clang NODEJS_VERSION=node/12 Linux passed
135.6 gcc NODEJS_VERSION=node/12 Linux passed
135.7 clang NODEJS_VERSION=node/13 Linux passed
135.8 gcc NODEJS_VERSION=node/13 Linux passed
135.9 clang NODEJS_VERSION=node/8 macOS passed
135.10 gcc NODEJS_VERSION=node/8 macOS passed
135.11 clang NODEJS_VERSION=node/10 macOS passed
135.12 gcc NODEJS_VERSION=node/10 macOS passed
135.13 clang NODEJS_VERSION=node/12 macOS passed
135.14 gcc NODEJS_VERSION=node/12 macOS passed
135.15 clang NODEJS_VERSION=node/13 macOS passed
135.16 gcc NODEJS_VERSION=node/13 macOS passed
135.17 clang NODEJS_VERSION=node/6 Linux passed This job is allowed to fail.
135.18 gcc NODEJS_VERSION=node/6 Linux passed This job is allowed to fail.
135.19 clang NODEJS_VERSION=nightly Linux passed This job is allowed to fail.
135.20 gcc NODEJS_VERSION=nightly Linux passed This job is allowed to fail.
135.21 clang NODEJS_VERSION=node/6 macOS passed This job is allowed to fail.
135.22 gcc NODEJS_VERSION=node/6 macOS passed This job is allowed to fail.
135.23 clang NODEJS_VERSION=nightly macOS passed This job is allowed to fail.
135.24 gcc NODEJS_VERSION=nightly macOS passed This job is allowed to fail.

Build Configuration

Build Option Setting
Language C++
Operating System Linux (Trusty), macOS
Compiler Versions clang, gcc
Build Configuration
{
  "os": [
    "linux",
    "osx"
  ],
  "env": [
    "NODEJS_VERSION=node/6",
    "NODEJS_VERSION=node/8",
    "NODEJS_VERSION=node/10",
    "NODEJS_VERSION=node/12",
    "NODEJS_VERSION=node/13",
    "NODEJS_VERSION=nightly"
  ],
  "dist": "trusty",
  "sudo": false,
  "cache": {
    "directories": [
      "node_modules",
      "$HOME/.npm"
    ]
  },
  "group": "stable",
  "addons": {
    "apt": {
      "sources": [
        "ubuntu-toolchain-r-test"
      ],
      "packages": [
        "g++-4.9"
      ]
    }
  },
  "matrix": {
    "fast_finish": true,
    "allow_failures": [
      {
        "env": "NODEJS_VERSION=nightly"
      },
      {
        "env": "NODEJS_VERSION=node/6"
      }
    ]
  },
  "script": [
    "unset NVM_NODEJS_ORG_MIRROR",
    "npm test"
  ],
  ".result": "configured",
  "install": [
    "npm install $NPMOPT"
  ],
  "compiler": [
    "clang",
    "gcc"
  ],
  "language": "c++",
  "global_env": [
    "NVS_VERSION=1.4.2"
  ],
  "after_success": [
    "cpp-coveralls --gcov-options '\\-lp' --build-root test/build --exclude test"
  ],
  "before_install": [
    "pip2 install --user cpp-coveralls",
    "if [ \"$CXX\" = \"g++\" -a \"$TRAVIS_OS_NAME\" = \"linux\" ]; then export CXX=\"g++-4.9\" CC=\"gcc-4.9\" AR=\"gcc-ar-4.9\" RANLIB=\"gcc-ranlib-4.9\" NM=\"gcc-nm-4.9\" ; fi",
    "if [ \"$CXX\" = \"clang++\" ]; then export NPMOPT=--clang=1 ; fi",
    "export CFLAGS=\"$CFLAGS -O3 --coverage\" LDFLAGS=\"$LDFLAGS --coverage\"",
    "echo \"CFLAGS=\\\"$CFLAGS\\\" LDFLAGS=\\\"$LDFLAGS\\\"\"",
    "git clone --branch v$NVS_VERSION --depth 1 https://github.com/jasongin/nvs ~/.nvs",
    ". ~/.nvs/nvs.sh",
    "nvs --version",
    "nvs add $NODEJS_VERSION",
    "nvs use $NODEJS_VERSION",
    "node --version",
    "npm --version"
  ]
}
X Tutup