You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2020/04/15 17:23:02 UTC

[incubator-superset] branch master updated: Ditching travis config in favor of Github Actions (#9548)

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 403d5d6  Ditching travis config in favor of Github Actions (#9548)
403d5d6 is described below

commit 403d5d6542d646c3fafd53932256cd95cb8e4255
Author: Craig Rueda <cr...@craigrueda.com>
AuthorDate: Wed Apr 15 10:22:43 2020 -0700

    Ditching travis config in favor of Github Actions (#9548)
---
 .travis.yml | 129 ------------------------------------------------------------
 1 file changed, 129 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 623107c..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,129 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-jobs:
-  include:
-    - language: python
-      python: 3.6
-      env:
-        - TOXENV=fossa
-      install:
-        - pip install --upgrade pip
-        - pip install tox
-    - language: python
-      python: 3.6
-      env:
-        - TOXENV=license-check
-        - TRAVIS_CACHE=$HOME/.travis_cache/
-      addons:
-        apt:
-          packages:
-            - openjdk-8-jdk
-      install:
-        - pip install --upgrade pip
-        - pip install tox
-    - language: python
-      python: 3.6
-      env: TOXENV=cypress-dashboard
-      services:
-        - redis-server
-      before_install:
-        - nvm install 10.14.2
-    - language: python
-      python: 3.6
-      env: TOXENV=cypress-explore
-      services:
-        - redis-server
-      before_install:
-        - nvm install 10.14.2
-    - language: python
-      python: 3.6
-      env: TOXENV=cypress-sqllab
-      services:
-        - redis-server
-      before_install:
-        - nvm install 10.14.2
-    - language: python
-      python: 3.6
-      env: TOXENV=py36-mysql
-      services:
-        - mysql
-        - redis-server
-      before_script:
-        - mysql -u root -e "DROP DATABASE IF EXISTS superset; CREATE DATABASE superset DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci"
-        - mysql -u root -e "DROP DATABASE IF EXISTS sqllab_test_db; CREATE DATABASE sqllab_test_db DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci"
-        - mysql -u root -e "DROP DATABASE IF EXISTS admin_database; CREATE DATABASE admin_database DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci"
-        - mysql -u root -e "CREATE USER 'mysqluser'@'localhost' IDENTIFIED BY 'mysqluserpassword';"
-        - mysql -u root -e "GRANT ALL ON *.* TO 'mysqluser'@'localhost';"
-    - language: python
-      env: TOXENV=javascript
-      before_install:
-        - nvm install 10.14.2
-    - language: python
-      python: 3.6
-      env: TOXENV=black
-    - language: python
-      python: 3.6
-      env: TOXENV=isort
-    - language: python
-      python: 3.6
-      env: TOXENV=mypy
-    - language: python
-      python: 3.6
-      env: TOXENV=py36-sqlite
-      services:
-        - redis-server
-    - language: python
-      python: 3.6
-      env: TOXENV=py36-postgres
-      services:
-        - postgresql
-        - redis-server
-      before_script:
-        - psql -U postgres -c "DROP DATABASE IF EXISTS superset;"
-        - psql -U postgres -c "CREATE DATABASE superset;"
-        - psql -U postgres superset -c "DROP SCHEMA IF EXISTS sqllab_test_db;"
-        - psql -U postgres superset -c "CREATE SCHEMA sqllab_test_db;"
-        - psql -U postgres superset -c "DROP SCHEMA IF EXISTS admin_database;"
-        - psql -U postgres superset -c "CREATE SCHEMA admin_database;"
-        - psql -U postgres -c "CREATE USER postgresuser WITH PASSWORD 'pguserpassword';"
-        - psql -U postgres superset -c "GRANT ALL PRIVILEGES ON SCHEMA sqllab_test_db to postgresuser";
-        - psql -U postgres superset -c "GRANT ALL PRIVILEGES ON SCHEMA admin_database to postgresuser";
-    - language: python
-      python: 3.6
-      env: TOXENV=pylint
-    - language: python
-      python: 3.6
-      env: TOXENV=docs
-
-script:
-  - tox
-after_success:
-  - codecov
-cache:
-  pip: true
-  directories:
-    - ~/.npm
-    - ~/.cache
-    - ~/.travis_cache/
-    - superset-frontend/.terser-plugin-cache/
-addons:
-  apt:
-    packages:
-      - libgconf-2-4
-install:
-  - pip install --upgrade pip
-  - pip install codecov tox