Skip to content

Add references to related cryptographic projects #42

Add references to related cryptographic projects

Add references to related cryptographic projects #42

Workflow file for this run

name: CI-Linux
on:
push:
branches:
- main
- release/**
- stable
pull_request:
branches:
- main
- release/**
- codex/**
jobs:
Tests-Linux:
runs-on: ubuntu-latest
strategy:
matrix:
std: [11, 17]
steps:
- uses: actions/checkout@v3
- name: Build and Run Tests
run: |
sudo apt-get update && sudo apt-get install -y cmake
CXX_STANDARD=${{ matrix.std }} ./scripts/run_tests.sh
Tests-Linux-vcpkg:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install cmake and vcpkg
run: |
sudo apt-get update && sudo apt-get install -y cmake
git clone https://github.com/microsoft/vcpkg.git
./vcpkg/bootstrap-vcpkg.sh -disableMetrics
- name: Build and Run Tests with vcpkg
env:
VCPKG_ROOT: ${{ github.workspace }}/vcpkg
run: |
CXX_STANDARD=17 ./scripts/run_tests.sh