feat: implemented support for locations of map indicators #4226
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: Feature branch deployment | |
on: | |
push: | |
branches-ignore: [ master, staging, gtif-demo, gtif_staging ] | |
concurrency: | |
group: ci-tests-${{ github.ref }}-1 | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
if: github.event_name != 'pull_request' # Only run deploy for pushes not for pull requests | |
runs-on: ubuntu-22.04 | |
steps: | |
# Checkout code | |
- uses: actions/checkout@v3 | |
# Install node | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'npm' | |
cache-dependency-path: app/package-lock.json | |
# Build | |
- name: Build | |
run: | | |
cd app/ | |
sed -e "s,// publicPath: '/',publicPath: '/${GITHUB_REF##*/}'," -i vue.config.js | |
npm ci --ignore-scripts | |
npm run build -- --mode development | |
# Inject SH Config file | |
- name: replace instance ID | |
uses: datamonsters/replace-action@v2 | |
with: | |
files: 'app/dist/shConfig.js' | |
replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$MAPBOX_ACCESS_TOKEN=${{ secrets.MAPBOX_ACCESS_TOKEN }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}' | |
# Upload build client to S3 | |
- name: sync client s3 | |
uses: jakejarvis/s3-sync-action@v0.5.1 | |
with: | |
args: --delete --follow-symlinks --exclude 'data/*' --exclude 'eodash-data/*' | |
env: | |
SOURCE_DIR: 'app/dist' | |
DEST_DIR: 'feature-branches/${GITHUB_REF##*/}' | |
AWS_REGION: 'eu-central-1' | |
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# Upload data to S3 | |
- name: sync data s3 | |
uses: jakejarvis/s3-sync-action@v0.5.1 | |
with: | |
args: --delete --follow-symlinks --size-only | |
env: | |
SOURCE_DIR: 'app/dist/data' | |
DEST_DIR: 'feature-branches/${GITHUB_REF##*/}/data' | |
AWS_REGION: 'eu-central-1' | |
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# Upload eodashdata to S3 | |
- name: sync eodashdata s3 | |
uses: jakejarvis/s3-sync-action@v0.5.1 | |
with: | |
args: --delete --follow-symlinks --size-only | |
env: | |
SOURCE_DIR: 'app/dist/eodash-data' | |
DEST_DIR: 'feature-branches/${GITHUB_REF##*/}/eodash-data' | |
AWS_REGION: 'eu-central-1' | |
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# Invalidate Cloudfront | |
- name: invalidate | |
uses: chetan/invalidate-cloudfront-action@v1.2 | |
env: | |
DISTRIBUTION: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID_FEATUREBRANCHES }} | |
PATHS: '/*' # TODO: Only invalidate the current branch. "PATHS: '/${GITHUB_REF##*/}/*'" didn't work. | |
AWS_REGION: 'eu-central-1' | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# Send notification | |
- name: action-slack | |
uses: 8398a7/action-slack@v3.15.1 | |
with: | |
status: ${{ job.status }} | |
author_name: eodash_deploy | |
fields: repo,message,commit,author,action,eventName,ref,workflow | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required | |
if: always() | |
cypress-run-gtif: | |
needs: deploy | |
name: Cypress run feature branch GTIF | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Tests for GTIF | |
- name: Cypress run | |
uses: cypress-io/github-action@v4 | |
with: | |
working-directory: app | |
spec: tests/e2e/specs/indicators_gtif.js | |
config: 'baseUrl=https://${{ secrets.TEST_INSTANCE_UN }}:${{ secrets.TEST_INSTANCE_PW }}@gtif-testing.eox.at/${{ github.ref_name }}/' | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: app/tests/e2e/screenshots | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: cypress-videos | |
path: app/tests/e2e/videos | |
cypress-run-race: | |
needs: deploy | |
name: Cypress run feature branch RACE | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Tests for RACE | |
- name: Cypress run | |
uses: cypress-io/github-action@v4 | |
with: | |
working-directory: app | |
spec: tests/e2e/specs/indicators_race.js | |
config: 'baseUrl=https://${{ secrets.TEST_INSTANCE_UN }}:${{ secrets.TEST_INSTANCE_PW }}@eodash-testing.eox.at/${{ github.ref_name }}/' | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: app/tests/e2e/screenshots | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: cypress-videos | |
path: app/tests/e2e/videos | |
cypress-run-trilateral: | |
needs: deploy | |
name: Cypress run feature branch Trilateral | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Tests for trilateral | |
- name: Cypress run | |
uses: cypress-io/github-action@v4 | |
with: | |
working-directory: app | |
spec: tests/e2e/specs/indicators_trilateral.js | |
config: 'baseUrl=https://${{ secrets.TEST_INSTANCE_UN }}:${{ secrets.TEST_INSTANCE_PW }}@eodash-trilateral-testing.eox.at/${{ github.ref_name }}/' | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: app/tests/e2e/screenshots | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: cypress-videos | |
path: app/tests/e2e/videos |