You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/08/06 07:40:28 UTC

[airflow-site] branch master updated: Migrate to Github Action + save artifacts + publish website (#276)

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

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 4961220  Migrate to Github Action + save artifacts + publish website (#276)
4961220 is described below

commit 4961220df9ab386bb42cf94f0c3996fa2523b9d6
Author: Kamil BreguĊ‚a <mi...@users.noreply.github.com>
AuthorDate: Thu Aug 6 09:40:13 2020 +0200

    Migrate to Github Action + save artifacts + publish website (#276)
---
 .github/workflows/build.yml | 68 +++++++++++++++++++++++++++++++++++++++++++++
 .travis.yml                 | 40 --------------------------
 2 files changed, 68 insertions(+), 40 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..2e57a74
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,68 @@
+# 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.
+
+name: Build docs
+
+on:
+  push:
+    branches: ['master']
+  pull_request:
+    branches: ['master']
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          submodules: recursive
+          lfs: true
+      - uses: actions/setup-python@v2
+        with:
+          python-version: '3.6'
+      - name: Build Docker image
+        run: ./site.sh build-image
+      - name: Install node depedencies
+        run: ./site.sh install-node-deps
+      - name: Install Python depedencies
+        run: pip install -r requirements.txt
+      - name: Lint
+        run: pre-commit run --all-files --show-diff-on-failure
+      - name: Build site
+        run: ./site.sh build-site
+      - name: Optimize artifacts
+        if: ${{ github.event_name == 'pull_request' }}
+        run: |
+          rm -rf ./dist/docs/*
+          echo "These files have been deleted to optimize the size of the artifacts." > ./dist/docs/index.html
+          echo "Here was the contents of the ./docs-archive directory" >> ./dist/docs/index.html
+          find ./dist/
+      - uses: actions/upload-artifact@v2
+        name: Upload documentation as artifact
+        if: ${{ github.event_name == 'pull_request' }}
+        with:
+          name: airflow-website
+          path: './dist'
+      - name: Deploy documentation on asf-site branch
+        uses: s0/git-publish-subdir-action@develop
+        if: ${{ github.event_name == 'push' }}
+        env:
+          REPO: self
+          BRANCH: asf-site
+          FOLDER: dist
+          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index a81e409..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,40 +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.
-#
----
-dist: xenial
-language: python
-
-python: "3.6"
-stages:
-  - pre-test
-  - test
-services:
-  - docker
-install:
-  - ./site.sh build-image
-  - ./site.sh install-node-deps
-  - pip install -r requirements.txt
-jobs:
-  include:
-    - stage: lint
-      script:
-        - pre-commit run --all-files --show-diff-on-failure
-    - stage: build
-      script:
-        - ./site.sh build-site
-#        - ./site.sh check-site-links