From e1b53eae3c2c6df82fe67177c3ba244622b1c09a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 23 Oct 2019 00:52:39 +0200 Subject: [PATCH] Remove unused .gitlab-ci.yml files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- jid-rs/.gitlab-ci.yml | 62 --------------------------------------- minidom-rs/.gitlab-ci.yml | 62 --------------------------------------- tokio-xmpp/.gitlab-ci.yml | 14 --------- xmpp-rs/.gitlab-ci.yml | 52 -------------------------------- 4 files changed, 190 deletions(-) delete mode 100644 jid-rs/.gitlab-ci.yml delete mode 100644 minidom-rs/.gitlab-ci.yml delete mode 100644 tokio-xmpp/.gitlab-ci.yml delete mode 100644 xmpp-rs/.gitlab-ci.yml diff --git a/jid-rs/.gitlab-ci.yml b/jid-rs/.gitlab-ci.yml deleted file mode 100644 index 6996a552..00000000 --- a/jid-rs/.gitlab-ci.yml +++ /dev/null @@ -1,62 +0,0 @@ -stages: - - build - - test - -variables: - FEATURES: "" - RUST_BACKTRACE: "full" - -.stable: - image: rust:latest - cache: - key: stable - paths: - - target/ - -.nightly: - image: rustlang/rust:nightly - cache: - key: nightly - paths: - - target/ - -.build: - stage: build - script: - - cargo build --verbose --no-default-features --features=$FEATURES - -.test: - stage: test - script: - - cargo test --lib --verbose --no-default-features --features=$FEATURES - -rust-latest-build: - extends: - - .build - - .stable - -rust-nightly-build: - extends: - - .build - - .nightly - - -rust-latest-test: - extends: - - .test - - .stable - -rust-nightly-test: - extends: - - .test - - .nightly - -rust-latest-build with features=minidom: - extends: rust-latest-build - variables: - FEATURES: "minidom" - -rust-latest-test with features=minidom: - extends: rust-latest-test - variables: - FEATURES: "minidom" diff --git a/minidom-rs/.gitlab-ci.yml b/minidom-rs/.gitlab-ci.yml deleted file mode 100644 index efd57f1e..00000000 --- a/minidom-rs/.gitlab-ci.yml +++ /dev/null @@ -1,62 +0,0 @@ -stages: - - build - - test - -variables: - FEATURES: "" - RUST_BACKTRACE: "full" - -.stable: - image: rust:latest - cache: - key: stable - paths: - - target/ - -.nightly: - image: rustlang/rust:nightly - cache: - key: nightly - paths: - - target/ - -.build: - stage: build - script: - - cargo build --verbose --no-default-features --features=$FEATURES - -.test: - stage: test - script: - - cargo test --verbose --no-default-features --features=$FEATURES - -rust-latest-build: - extends: - - .build - - .stable - -rust-nightly-build: - extends: - - .build - - .nightly - - -rust-latest-test: - extends: - - .test - - .stable - -rust-nightly-test: - extends: - - .test - - .nightly - -rust-latest-build with features=comments: - extends: rust-latest-build - variables: - FEATURES: "comments" - -rust-latest-test with features=comments: - extends: rust-latest-test - variables: - FEATURES: "comments" diff --git a/tokio-xmpp/.gitlab-ci.yml b/tokio-xmpp/.gitlab-ci.yml deleted file mode 100644 index ae087bde..00000000 --- a/tokio-xmpp/.gitlab-ci.yml +++ /dev/null @@ -1,14 +0,0 @@ -stages: - - build -rust-latest: - stage: build - image: rust:latest - script: - - cargo build --verbose - - cargo test --verbose -rust-nightly: - stage: build - image: rustlang/rust:nightly - script: - - cargo build --verbose - - cargo test --verbose diff --git a/xmpp-rs/.gitlab-ci.yml b/xmpp-rs/.gitlab-ci.yml deleted file mode 100644 index bc899d9f..00000000 --- a/xmpp-rs/.gitlab-ci.yml +++ /dev/null @@ -1,52 +0,0 @@ -stages: - - build - - test - -variables: - FEATURES: "" - RUST_BACKTRACE: "full" - -.stable: - image: rust:latest - cache: - key: stable - paths: - - target/ - -.nightly: - image: rustlang/rust:nightly - cache: - key: nightly - paths: - - target/ - -.build: - stage: build - script: - - cargo build --verbose --no-default-features --features=$FEATURES - -.test: - stage: test - script: - - cargo test --verbose --no-default-features --features=$FEATURES - -rust-latest-build: - extends: - - .build - - .stable - -rust-nightly-build: - extends: - - .build - - .nightly - - -rust-latest-test: - extends: - - .test - - .stable - -rust-nightly-test: - extends: - - .test - - .nightly