Skip to content

Bump braces from 3.0.2 to 3.0.3 in /tests #92

Bump braces from 3.0.2 to 3.0.3 in /tests

Bump braces from 3.0.2 to 3.0.3 in /tests #92

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
working-directory: ${{github.workspace}}/scripts
# Install dependencies:
# - Pistache
# - Mysql XDevAPI
# - Sodium
# - JSON https://github.com/nlohmann/json
run: sh ubuntu-install-dev.sh
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Run and prepare database
# Install test framework
run: sh scripts/mysql-prepare.sh
- name: Run API server
# Install test framework
run: sh scripts/ubuntu-service-run.sh && sleep 1 && sh scripts/ubuntu-service-status.sh
- name: Test framework setup
working-directory: ${{github.workspace}}/tests
# Run End-to-End tests
run: npm ci
- name: Test
timeout-minutes: 1
working-directory: ${{github.workspace}}/tests
# Run End-to-End tests
run: npm run codeceptjs:headless
- name: Kill API server
working-directory: ${{github.workspace}}/build
# Install test framework
run: pkill mg_m2_api