feat(bq,sf|h3,quadbin): add H3/QUADBIN_POLYFILL_TABLE #582
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Redshift dedicated env | |
on: | |
pull_request: | |
types: [closed, unlabeled, labeled, synchronize] | |
env: | |
NODE_VERSION: 14 | |
PYTHON2_VERSION: 2.7.18 | |
PYTHON3_VERSION: 3.8.10 | |
VIRTUALENV_VERSION: 20.15.1 | |
jobs: | |
dedicated: | |
if: | | |
github.event.label.name == 'dedicated_redshift' || | |
(github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'dedicated_redshift')) || | |
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'dedicated_redshift')) | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 20 | |
env: | |
RS_HOST: ${{ secrets.RS_HOST_CD }} | |
RS_DATABASE: ${{ secrets.RS_DATABASE_CD }} | |
RS_USER: ${{ secrets.RS_USER_CD }} | |
RS_PASSWORD: ${{ secrets.RS_PASSWORD_CD }} | |
RS_BUCKET: ${{ secrets.RS_BUCKET_CD }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.RS_AWS_ACCESS_KEY_ID_CD }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.RS_AWS_SECRET_ACCESS_KEY_CD }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Set RS_PREFIX for releases | |
if: startsWith(github.event.pull_request.head.ref, 'release/') | |
run: | | |
BRANCH_NAME="${{ github.event.pull_request.head.ref }}" | |
VERSION=${BRANCH_NAME#release/} | |
echo "RS_PREFIX=dedicated_release_${VERSION}_" >> $GITHUB_ENV | |
- name: Set RS_PREFIX for hotfixes | |
if: startsWith(github.event.pull_request.head.ref, 'hotfix/') | |
run: | | |
BRANCH_NAME="${{ github.event.pull_request.head.ref }}" | |
VERSION=${BRANCH_NAME#hotfix/} | |
echo "RS_PREFIX=dedicated_release_${VERSION}_" >> $GITHUB_ENV | |
- name: Set RS_PREFIX for regular deploys | |
if: | | |
!(startsWith(github.event.pull_request.head.ref, 'hotfix/')) && | |
!(startsWith(github.event.pull_request.head.ref, 'release/')) | |
run: echo "RS_PREFIX=dedicated_${{ github.event.pull_request.number }}_" >> $GITHUB_ENV | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Setup yarn | |
run: npm install -g yarn | |
- name: Install dependencies | |
run: | | |
apt-get update | |
apt-get -y install rsync zip unzip curl glibc-source groff less | |
- name: Install AWS CLI | |
run: | | |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" | |
unzip awscliv2.zip | |
./aws/install | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.RS_AWS_ACCESS_KEY_ID_CD }} | |
aws-secret-access-key: ${{ secrets.RS_AWS_SECRET_ACCESS_KEY_CD }} | |
aws-region: ${{ secrets.RS_REGION_CD }} | |
- name: Setup virtualenv | |
run: pip install virtualenv==${{ env.VIRTUALENV_VERSION }} | |
- name: Run deploy | |
id: deploy | |
if: github.event.action == 'synchronize' || github.event.action == 'labeled' | |
run: | | |
cd clouds/redshift | |
make deploy | |
- name: Run remove | |
id: remove | |
if: github.event.action == 'unlabeled' || github.event.action == 'closed' | |
run: | | |
cd clouds/redshift | |
make remove | |
- name: Comment deploy PR | |
if: steps.deploy.outcome == 'success' && github.event.action == 'labeled' | |
uses: thollander/actions-comment-pull-request@v1 | |
with: | |
message: | | |
Dedicated ${{ env.RS_PREFIX }}carto environment deployed in Redshift host ${{ env.RS_HOST }} and ${{ env.RS_DATABASE }} database | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Comment remove PR | |
if: steps.remove.outcome == 'success' && (github.event.action == 'unlabeled' || github.event.action == 'closed') | |
uses: thollander/actions-comment-pull-request@v1 | |
with: | |
message: | | |
Dedicated environment removed | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |