fix(sf|random): ST_GENERATEPOINTS was not accepting column names #652
Workflow file for this run
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 | |
container: python:2.7.18-buster | |
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: Check diff | |
uses: technote-space/get-diff-action@v4 | |
- 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: Setup virtualenv | |
run: pip install virtualenv==${{ env.VIRTUALENV_VERSION }} | |
- 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 }} |