diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 7f68a0fd19..0000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,60 +0,0 @@ -#Adapted from https://users.rust-lang.org/t/my-gitlab-config-docs-tests/16396 - -default: - image: 'sigp/lighthouse:latest' - cache: - paths: - - tests/ef_tests/*-v0.9.1.tar.gz - -stages: - - test - - document - -variables: - CARGO_HOME: /cache/cargocache - -check-fmt: - stage: test - script: - - cargo build --manifest-path protos/Cargo.toml - - cargo fmt --all -- --check - -test-dev: - stage: test - variables: - GIT_SUBMODULE_STRATEGY: normal - script: - - cargo test --verbose --all - -test-release: - stage: test - variables: - GIT_SUBMODULE_STRATEGY: normal - script: - - cargo test --verbose --all --release - -test-ef: - stage: test - variables: - GIT_SUBMODULE_STRATEGY: normal - script: - - make make-ef-tests - - cargo test --manifest-path tests/ef_tests/Cargo.toml --release --features ef_tests - -test-ef-fake-crypto: - stage: test - variables: - GIT_SUBMODULE_STRATEGY: normal - script: - - make make-ef-tests - - cargo test --manifest-path tests/ef_tests/Cargo.toml --release --features ef_tests,fake_crypto - -documentation: - stage: document - script: - - cargo doc --no-deps - - aws s3 sync target/doc/ s3://lighthouse-docs.sigmaprime.io/ --exclude '.lock' --delete - # Configure the below when we want to have a default page (and update S3 bucket index). - # - echo '' > public/index.html - only: - - master diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b9754eb1eb..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -language: rust -cache: - directories: - - /home/travis/.cargo -before_install: - - curl -OL https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip - - unzip protoc-3.4.0-linux-x86_64.zip -d protoc3 - - sudo mv protoc3/bin/* /usr/local/bin/ - - sudo mv protoc3/include/* /usr/local/include/ - - sudo chown $USER /usr/local/bin/protoc - - sudo chown -R $USER /usr/local/include/google -script: - - cargo build --verbose --all --release - - cargo fmt --all -- --check -rust: - - beta - - nightly -matrix: - allow_failures: - - rust: beta - - rust: nightly - fast_finish: true -install: - - rustup component add rustfmt