-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (77 loc) · 2.73 KB
/
test_function_api.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
###################################################################
# Auto-created by the cicd-actions tool
on: pull_request
name: 'CICD: Test Function-API'
jobs:
deploy:
name: Deploy
runs-on: self-hosted
steps:
- name: Ensure AWS CLI exists and credentials works.
run: aws s3 ls
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.17.2
- name: Install yarn
run: npm i -g yarn
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Version
id: package-versions
run: ./tool/cicd/actions/scripts/export_versions.sh
- name: Discovered versions
run: >
echo "Versions: function_api/${{env.VERSION_FUNCTION_API}}
fuse-cli/${{env.VERSION_FUSEBIT_CLI}}
fuse-ops/${{env.VERSION_FUSEBIT_OPS_CLI}}"
- name: Setup .env files
run: >-
./tool/cicd/actions/scripts/create_function_api_env.cicd.us-east-2.749775346857.sh
- name: Test - Delete Old Build Artifacts
run: ./tool/cicd/actions/scripts/clean_dirty_artifacts.sh
- name: Pre-Build Summary
run: |
echo function-api: ${VERSION_FUNCTION_API}
echo fusebit-cli: ${VERSION_FUSEBIT_CLI}
echo fusebit-ops-cli: ${VERSION_FUSEBIT_OPS_CLI}
- name: Build
run: ./tool/cicd/actions/scripts/build_tree.sh
- name: Test - Drop Public Schema
run: ./tool/cicd/actions/scripts/cleanup_db.sh
- name: Publish - function-api - 749 Only
run: ./tool/cicd/actions/scripts/publish_function_api_dev.sh
- name: Test - deploy exclusive to cicd/us-east-2
env:
REGION: us-east-2
DEPLOYMENT_NAME: cicd
NETWORK_NAME: cicd
DEPLOYMENT_DOMAIN: dev.fusebit.io
run: ./tool/cicd/actions/scripts/deploy_exclusive_function_api.sh
- name: Cleanup Orphaned Resources
run: ./tool/cicd/actions/scripts/clean_env.sh
- name: Test - function-api
env:
FUSE_PROFILE: cicd
FUSETUNNEL_SECRET: ${{ secrets.FUSETUNNEL_SECRET }}
run: ./tool/cicd/actions/scripts/test_function_api.sh
- name: Notify slack success
if: success()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
with:
channel: pr-review
status: SUCCESS
color: good
- name: Notify slack fail
if: failure()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
with:
channel: pr-review
status: FAILED
color: danger