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