From 9f4734626325fa0d311742b5389207bfa08a9d65 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Mon, 30 Oct 2023 01:05:28 +0100 Subject: [PATCH] Remove prehistoric CI configs --- .gitlab-ci.yml | 30 ---------------------- .travis.yml | 70 -------------------------------------------------- 2 files changed, 100 deletions(-) delete mode 100644 .gitlab-ci.yml delete mode 100644 .travis.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index cf1ef33f..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,30 +0,0 @@ -image: ubuntu:xenial - -before_script: - - apt-get update - - apt-get -y install sudo curl git file g++ cmake - - curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes - - multirust default nightly - -stages: - - test - - deploy - -job1: - stage: test - script: - - cargo test -v --manifest-path vulkano-shaders/Cargo.toml - - cargo test --no-run -v --manifest-path vulkano/Cargo.toml - -pages: - stage: deploy - only: - - master - script: - - cargo doc --manifest-path vulkano/Cargo.toml - - rm -rf public - - mkdir public - - cp -R vulkano/target/doc/* public - artifacts: - paths: - - public diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 18faa4a8..00000000 --- a/.travis.yml +++ /dev/null @@ -1,70 +0,0 @@ -language: rust - -jobs: - fast_finish: true - include: -# - os: windows -# env: PYTHONPATH=C:\Python38 -# env: PATH="C:\Python38;$PATH" -# rust: -# - stable -# - os: windows -# env: PYTHONPATH=C:\Python38 -# env: PATH="C:\Python38;$PATH" -# rust: -# - nightly - - os: linux - dist: bionic - rust: - - stable -# Nightly build turned off until #1423 resolved -# - os: linux -# dist: bionic -# rust: -# - nightly - - os: osx - rust: - - stable - - os: osx - rust: - - nightly - -cache: - directories: - - $TRAVIS_HOME/.cargo/ - - $TRAVIS_BUILD_DIR/target/debug/build - - $TRAVIS_BUILD_DIR/target/debug/deps - - $TRAVIS_BUILD_DIR/target/debug/incremental - -before_cache: - - rm -rf $TRAVIS_HOME/.cargo/registry/src - -before_install: - - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install ninja; choco install python3 --params "/InstallAllUsers"; fi - -script: - - git diff-tree --check $(git hash-object -t tree /dev/null) HEAD - - travis_wait 30 cargo build -j 2 --all - - travis_wait 30 cargo test -j 2 --all - -after_success: - - | - [ $TRAVIS_BRANCH = master ] && - [ $TRAVIS_PULL_REQUEST = false ] && - [ $TRAVIS_OS_NAME = linux ] && - travis_wait 30 cargo publish -j 2 --token ${CRATESIO_TOKEN} --manifest-path vk-sys/Cargo.toml - - | - [ $TRAVIS_BRANCH = master ] && - [ $TRAVIS_PULL_REQUEST = false ] && - [ $TRAVIS_OS_NAME = linux ] && - travis_wait 30 cargo publish -j 2 --token ${CRATESIO_TOKEN} --manifest-path vulkano/Cargo.toml - - | - [ $TRAVIS_BRANCH = master ] && - [ $TRAVIS_PULL_REQUEST = false ] && - [ $TRAVIS_OS_NAME = linux ] && - travis_wait 30 cargo publish -j 2 --token ${CRATESIO_TOKEN} --manifest-path vulkano-win/Cargo.toml - - | - [ $TRAVIS_BRANCH = master ] && - [ $TRAVIS_PULL_REQUEST = false ] && - [ $TRAVIS_OS_NAME = linux ] && - travis_wait 30 cargo publish -j 2 --token ${CRATESIO_TOKEN} --manifest-path vulkano-shaders/Cargo.toml