From 1f1bb1a5973c051d25b5a5a5c3191c0a6c69a136 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 29 Jul 2023 18:27:28 +0700 Subject: [PATCH] ci: Remove Travis configs. These haven't been used in a year. Also, change the build status badges to point to GitHub Actions. --- .travis.yml | 24 ------------------------ README.md | 2 +- cocoa-foundation/.travis.yml | 3 --- cocoa/.travis.yml | 3 --- core-graphics/.travis.yml | 10 ---------- core-graphics/README.md | 2 +- core-text/.travis.yml | 6 ------ core-text/README.md | 2 +- io-surface/.travis.yml | 10 ---------- 9 files changed, 3 insertions(+), 59 deletions(-) delete mode 100644 .travis.yml delete mode 100644 cocoa-foundation/.travis.yml delete mode 100644 cocoa/.travis.yml delete mode 100644 core-graphics/.travis.yml delete mode 100644 core-text/.travis.yml delete mode 100644 io-surface/.travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8902fac4e..000000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -os: osx -language: rust -rust: stable -if: branch != master OR type != push -matrix: - include: - # macOS 10.11 - - osx_image: xcode7.3 - env: TARGET=x86_64-apple-darwin CGFEATURES="" - # macOS 10.12 - - osx_image: xcode9.2 - env: TARGET=x86_64-apple-darwin CGFEATURES="--features elcapitan" - # macOS 10.13 - - osx_image: xcode9.4 - env: TARGET=x86_64-apple-darwin CGFEATURES="--features highsierra,elcapitan" - # macOS 10.14 - - osx_image: xcode11.3 - env: TARGET=x86_64-apple-darwin CGFEATURES="--features highsierra,elcapitan" - -install: - - rustup target add $TARGET -script: - - cargo build --all-targets --verbose --target $TARGET - - cargo test --verbose --target $TARGET -- --nocapture diff --git a/README.md b/README.md index b0a60bd6f..c18cf875c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # core-foundation-rs -[![Build Status](https://travis-ci.com/servo/core-foundation-rs.svg?branch=master)](https://travis-ci.com/servo/core-foundation-rs) +[![Build Status](https://github.com/servo/core-foundation-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/servo/core-foundation-rs/actions/workflows/rust.yml) ## Compatibility diff --git a/cocoa-foundation/.travis.yml b/cocoa-foundation/.travis.yml deleted file mode 100644 index 89a94489a..000000000 --- a/cocoa-foundation/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -os: osx - -language: rust diff --git a/cocoa/.travis.yml b/cocoa/.travis.yml deleted file mode 100644 index 89a94489a..000000000 --- a/cocoa/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -os: osx - -language: rust diff --git a/core-graphics/.travis.yml b/core-graphics/.travis.yml deleted file mode 100644 index 18ddd1a29..000000000 --- a/core-graphics/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: rust -os: osx -rust: - - nightly - - beta - - stable - -script: - - cargo test - - cargo test --features="elcapitan" diff --git a/core-graphics/README.md b/core-graphics/README.md index 22175688c..11ed112f6 100644 --- a/core-graphics/README.md +++ b/core-graphics/README.md @@ -1,3 +1,3 @@ # core-graphics-rs -[![Build Status](https://travis-ci.com/servo/core-graphics-rs.svg?branch=master)](https://travis-ci.com/servo/core-graphics-rs) +[![Build Status](https://github.com/servo/core-foundation-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/servo/core-foundation-rs/actions/workflows/rust.yml) diff --git a/core-text/.travis.yml b/core-text/.travis.yml deleted file mode 100644 index ba0c42185..000000000 --- a/core-text/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: rust -rust: - - nightly - - beta - - stable -os: osx diff --git a/core-text/README.md b/core-text/README.md index 312fe3325..b207b0dd1 100644 --- a/core-text/README.md +++ b/core-text/README.md @@ -1,3 +1,3 @@ # core-text-rs -[![Build Status](https://travis-ci.com/servo/core-text-rs.svg?branch=master)](https://travis-ci.com/servo/core-text-rs) +[![Build Status](https://github.com/servo/core-foundation-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/servo/core-foundation-rs/actions/workflows/rust.yml) diff --git a/io-surface/.travis.yml b/io-surface/.travis.yml deleted file mode 100644 index 901eacef6..000000000 --- a/io-surface/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -os: osx -language: rust -cache: cargo -rust: - - stable - - beta - - nightly -branches: - except: - - master