Skip to content

New: Added c++20 coroutine base code. #40

New: Added c++20 coroutine base code.

New: Added c++20 coroutine base code. #40

Workflow file for this run

name: Github-CI
on: [push, pull_request]
jobs:
build_third_party:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, arch-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Building squick third party library for linux and macos
if: matrix.os == 'ubuntu-latest' || matrix.os == 'arch-latest' || matrix.os == 'macOS-latest'
run: |
cd tools && ./build_third_party.sh
- name: Building squick third party library for windows
if: matrix.os == 'windows-latest'
run: |
cd tools
.\clone_thirdparty_build.bat
- name: Building sqkctl tools for linux and macos
if: matrix.os == 'ubuntu-latest' || matrix.os == 'arch-latest' || matrix.os == 'macOS-latest'
run: |
cd tools && ./build_sqkctl.sh
- name: Building sqkctl tools for windows
if: matrix.os == 'windows-latest'
run: |
cd tools
.\build_sqkctl.bat
- name: Building squick project for linux and macos
if: matrix.os == 'ubuntu-latest' || matrix.os == 'arch-latest' || matrix.os == 'macOS-latest'
run: |
cd tools && ./build_squick.sh
- name: Building squick project for windows
if: matrix.os == 'windows-latest'
run: |
cd tools
.\build_squick.bat
- name: Geneating deploy files for linux and macos
if: matrix.os == 'ubuntu-latest' || matrix.os == 'arch-latest' || matrix.os == 'macOS-latest'
run: |
cd tools && ./generate_deploy.sh
- name: Geneating deploy files for windows
if: matrix.os == 'windows-latest'
run: |
cd tools
.\generate_deploy.bat