2021-10-04 21:21:10 +05:30
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
version:
|
|
|
|
#- 1.51.0
|
|
|
|
- stable
|
|
|
|
# - nightly
|
|
|
|
|
|
|
|
name: ${{ matrix.version }} - x86_64-unknown-linux-gnu
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: password
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_DB: postgres
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: ⚡ Cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
2021-10-14 20:03:47 +05:30
|
|
|
node_modules/
|
2021-10-04 21:21:10 +05:30
|
|
|
target
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install ${{ matrix.version }}
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.version }}-x86_64-unknown-linux-gnu
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
|
2021-10-12 14:02:34 +05:30
|
|
|
- name: build frtontend assets
|
2021-10-04 21:21:10 +05:30
|
|
|
run: make frontend
|
|
|
|
|
|
|
|
- name: Run migrations
|
|
|
|
run: make migrate
|
|
|
|
env:
|
|
|
|
DATABASE_URL: postgres://postgres:password@localhost:5432/postgres
|
|
|
|
|
|
|
|
- name: build
|
|
|
|
run: make
|
|
|
|
env:
|
|
|
|
DATABASE_URL: postgres://postgres:password@localhost:5432/postgres
|
|
|
|
|
|
|
|
- name: run tests
|
|
|
|
run: make test
|
|
|
|
env:
|
|
|
|
DATABASE_URL: postgres://postgres:password@localhost:5432/postgres
|
|
|
|
|
|
|
|
- name: generate documentation
|
|
|
|
if: matrix.version == 'stable' && (github.repository == 'mcapthca/survey')
|
|
|
|
run: make doc
|
|
|
|
env:
|
|
|
|
DATABASE_URL: postgres://postgres:password@localhost:5432/postgres
|
|
|
|
GIT_HASH: 8e77345f1597e40c2e266cb4e6dee74888918a61 # dummy value
|
|
|
|
OPEN_API_DOCS: 8e77345f1597e40c2e266cb4e6dee74888918a61
|
|
|
|
COMPILED_DATE: "2021-07-21"
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
if: matrix.version == 'stable' && (github.repository == 'mcapthca/survey')
|
2024-06-08 01:28:08 +05:30
|
|
|
uses: JamesIves/github-pages-deploy-action@v4.6.1
|
2021-10-04 21:21:10 +05:30
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
BRANCH: gh-pages
|
|
|
|
FOLDER: target/doc
|