chore: added truck supported roads network as layer to fcm2, added sa… #5050
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, polar ] | |
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 }},$SH_INSTANCE_ID_POLAR=${{ secrets.SH_INSTANCE_ID_POLAR }},$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 }},$OPENCAGE_RACE=${{ secrets.OPENCAGE_EOX }},$OPENCAGE_GTIF=${{ secrets.OPENCAGE_EOX }},$OPENCAGE_TRILATERAL=${{ secrets.OPENCAGE_EOX }}' | |
# Upload build client to S3 | |
- name: sync client s3 | |
uses: jakejarvis/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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 |