★ wanayoo — archive 1999 https://github.com/nodejs/node-addon-api/pull/787/checksNouvelle recherche | Portail wanayoo
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

test: refactor threadsafe_function test with async/await #787

Closed
wants to merge 1 commit into from

test: refactor threadsafe_function test with async/await

49affef
Select commit
Closed

test: refactor threadsafe_function test with async/await #787

test: refactor threadsafe_function test with async/await
49affef
Select commit
Travis CI / Travis CI - Pull Request succeeded Aug 7, 2020 in 10m 58s

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 #787 test: refactor threadsafe_function test with async/await.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has 16 jobs, running in parallel.

Job Compiler ENV OS State Notes
403.1 clang NVS_VERSION=1.4.2 Linux passed
403.2 clang NVS_VERSION=1.4.2 Linux passed
403.3 clang NVS_VERSION=1.4.2 Linux passed
403.4 gcc NVS_VERSION=1.4.2 Linux passed
403.5 gcc NVS_VERSION=1.4.2 Linux passed
403.6 gcc NVS_VERSION=1.4.2 Linux passed
403.7 clang NVS_VERSION=1.4.2 macOS passed
403.8 clang NVS_VERSION=1.4.2 macOS passed
403.9 clang NVS_VERSION=1.4.2 macOS passed
403.10 gcc NVS_VERSION=1.4.2 macOS passed
403.11 gcc NVS_VERSION=1.4.2 macOS passed
403.12 gcc NVS_VERSION=1.4.2 macOS passed
403.13 clang NVS_VERSION=1.4.2 Linux passed This job is allowed to fail.
403.14 gcc NVS_VERSION=1.4.2 Linux passed This job is allowed to fail.
403.15 clang NVS_VERSION=1.4.2 macOS passed This job is allowed to fail.
403.16 gcc NVS_VERSION=1.4.2 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
{
  "language": "cpp",
  "os": [
    "linux",
    "osx"
  ],
  "dist": "trusty",
  "compiler": [
    "clang",
    "gcc"
  ],
  "env": [
    "global={:NVS_VERSION=>\"1.4.2\"} jobs={:NODEJS_VERSION=>\"node/10\"}={:NODEJS_VERSION=>\"node/12\"}={:NODEJS_VERSION=>\"node/14\"}={:NODEJS_VERSION=>\"nightly\"}"
  ],
  "sudo": false,
  "cache": {
    "directories": [
      "node_modules",
      "$HOME/.npm"
    ]
  },
  "addons": {
    "apt": {
      "sources": [
        {
          "name": "ubuntu-toolchain-r-test"
        }
      ],
      "packages": [
        "g++-4.9"
      ]
    }
  },
  "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"
  ],
  "install": [
    "npm install $NPMOPT"
  ],
  "script": [
    "unset NVM_NODEJS_ORG_MIRROR",
    "npm test"
  ],
  "after_success": [
    "cpp-coveralls --gcov-options '\\-lp' --build-root test/build --exclude test"
  ],
  "jobs": {
    "fast_finish": true,
    "allow_failures": [
      {
        "env": [
          {
            "NODEJS_VERSION": "nightly"
          }
        ]
      }
    ]
  }
}