Skip to content

Шишкарев Андрей #123

Шишкарев Андрей

Шишкарев Андрей #123

Workflow file for this run

name: C/C++ CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
configs: [Release]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Build project
shell: bash
run: |
echo $PATH
ls -a
cd build/
cmake .. && make -j 2
cd bin/
ls -a
- name: Run tests
shell: bash
run: |
cd build/bin/
ls -a
./test_matrix
- uses: actions/upload-artifact@v2
with:
path: |
build/*.tar.gz
name: artifact_${{ matrix.os }}_${{ matrix.configs }}.tar.gz