-
Notifications
You must be signed in to change notification settings - Fork 3
98 lines (96 loc) · 3.35 KB
/
deploy_workflow.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Deploy Workflow
on:
push:
branches:
- development
- master
- jnm/github-actions
jobs:
app-tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
--shm-size 512m
ports:
- 5432:5432
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.24
env:
discovery.type: single-node
options: >-
--health-cmd "curl http://localhost:9200/_cluster/health"
--health-interval 10s
--health-timeout 5s
--health-retries 10
ports:
- 9200:9200
steps:
- uses: actions/checkout@v4
with:
repository: snac-cooperative/snac
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.3
extensions: mbstring, bcmath, csv, xml
- name: Setup code
run: |
composer config github-oauth.github.com ${{ secrets.COMPOSER_ACCESS_TOKEN }}
composer update
composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist --ignore-platform-reqs
echo "${{ secrets.CONFIG_FILE }}" | base64 --decode > $GITHUB_WORKSPACE/src/snac/Config.php
echo "${{ secrets.USER_LIST }}" >> $GITHUB_WORKSPACE/install/setup_files/users.csv
mkdir -p coverage/
- name: Set max_parallel_workers_per_gather to 0
env:
PGPASSWORD: "postgres"
run: psql -h localhost -U postgres -d postgres -c "SET max_parallel_workers_per_gather = 0;"
- name: Seed database
run: |
tar xzvf $GITHUB_WORKSPACE/test/testing.sql.tar.gz -C $GITHUB_WORKSPACE/test
sudo php install/install.php automate
sudo php scripts/refresh.php automate $GITHUB_WORKSPACE/test/testing.sql
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_PORT: 5432
run: vendor/bin/phpunit --coverage-text --colors=never
deploy-production:
name: Deploy Project to PRODUCTION Server
runs-on: self-hosted
needs: [app-tests]
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: Composer install
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist --ignore-platform-reqs
- name: Deploy to Prod
uses: deployphp/action@v1
with:
dep: deploy stage=production
private-key: ${{ secrets.SSH_PRIVATE_KEY_PROD }}
skip-ssh-setup: true
verbosity: -vvv
deploy-development:
name: Deploy Project to DEVELOPMENT Server
runs-on: self-hosted
needs: [app-tests]
if: github.ref == 'refs/heads/development'
steps:
- uses: actions/checkout@v4
- name: Composer install
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist --ignore-platform-reqs
- name: Deploy to Dev
uses: deployphp/action@v1
with:
dep: deploy stage=development
private-key: ${{ secrets.SSH_PRIVATE_KEY_DEV }}
skip-ssh-setup: true
verbosity: -vvv