From 1846d2ad2b078f948f47e24fca33f55ec1382dc6 Mon Sep 17 00:00:00 2001 From: Dan Rose Date: Mon, 17 Jun 2024 16:25:39 -0500 Subject: [PATCH] Remove defunct integration with travis and greenkeeper --- .travis.yml | 115 ---------------------------------------------------- README.md | 2 - 2 files changed, 117 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b93e208f..00000000 --- a/.travis.yml +++ /dev/null @@ -1,115 +0,0 @@ -language: node_js -cache: yarn -dist: bionic -python: - - 3.6 - -jobs: - include: - ## TEST STAGE - - - os: linux - node_js: "14" - env: ZMQ_DRAFT=true - - - os: linux - node_js: "14" - env: ZMQ_DRAFT=true INCLUDE_COMPAT_TESTS=true - - - os: linux - env: ALPINE_CHROOT=3.10 ZMQ_DRAFT=true INCLUDE_COMPAT_TESTS=true - sudo: required - node_js: "14" - - - os: osx - osx_image: xcode10 - env: ZMQ_DRAFT=true - node_js: "14" - - - os: windows - node_js: "14" - # https://travis-ci.community/t/build-doesnt-finish-after-completing-tests/288 - env: ZMQ_DRAFT=true YARN_GPG=no - - - os: windows - node_js: "14/x86" - # https://travis-ci.community/t/build-doesnt-finish-after-completing-tests/288 - env: ZMQ_DRAFT=true YARN_GPG=no - - # Test shared libraries on Linux and macOS. - - os: linux - node_js: "14" - env: ZMQ_SHARED=true - addons: {apt: {packages: libzmq3-dev}} - - - os: osx - osx_image: xcode10 - node_js: "14" - env: ZMQ_SHARED=true - addons: {homebrew: {packages: zeromq, update: true}} - - # Test older versions of ZMQ. - - os: linux - node_js: "14" - env: ZMQ_VERSION=4.2.4 - - # Test recent Node versions. - - os: linux - node_js: "14" - # Skip GC tests due to https://github.com/node-ffi-napi/weak-napi/issues/16 - env: ZMQ_DRAFT=true SKIP_GC_TESTS=true INCLUDE_COMPAT_TESTS=true - - - os: linux - node_js: "13" - # Skip GC tests due to https://github.com/node-ffi-napi/weak-napi/issues/16 - env: ZMQ_DRAFT=true SKIP_GC_TESTS=true - - ## ADDITIONAL TESTS - - # This test ensures the delayed resolution of read/write promises is correct - # by disabling immediate resolution (which happens 99% of the time) entirely. - - os: linux - node_js: "14" - env: - ZMQ_NO_SYNC_RESOLVE=true ZMQ_DRAFT=true INCLUDE_COMPAT_TESTS=true - NODE_NO_WARNINGS=1 - - ## PREBUILD STAGE - - - stage: prebuild - os: linux - env: ALPINE_CHROOT=3.10 ARCHIVE_SUFFIX=-x64-musl - sudo: required - script: npm run prebuild - - - stage: prebuild - os: linux - node_js: "14" - env: ARCH=arm TRIPLE=arm-linux-gnueabihf GCC=8 ARCHIVE_SUFFIX=-armv7 - addons: - { - apt: - {packages: [gcc-8-arm-linux-gnueabihf, g++-8-arm-linux-gnueabihf]}, - } - script: npm run prebuild - - - stage: prebuild - os: linux - node_js: "14" - env: ARCH=arm64 TRIPLE=aarch64-linux-gnu GCC=8 ARCHIVE_SUFFIX=-armv8 - addons: - {apt: {packages: [gcc-8-aarch64-linux-gnu, g++-8-aarch64-linux-gnu]}} - script: npm run prebuild - - fast_finish: true - -stages: - - name: test - - name: prebuild - if: tag IS present - -install: - - travis_retry script/ci/install.sh - -script: - - travis_retry script/ci/test.sh diff --git a/README.md b/README.md index 4210eb84..024afce8 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # ZeroMQ.js Next Generation [![Latest version](https://img.shields.io/npm/v/zeromq?label=version)](https://www.npmjs.com/package/zeromq) -[![Greenkeeper monitoring](https://img.shields.io/badge/dependencies-monitored-brightgreen)](https://greenkeeper.io/) -[![Travis build status](https://img.shields.io/travis/zeromq/zeromq.js)](https://travis-ci.org/zeromq/zeromq.js) ## ⚠️ Version 6.0.0 (in beta) features a brand new API that solves many fundamental issues and is recommended for new projects. ⚠️