Skip to content

Update ci.yml

Update ci.yml #7

Workflow file for this run

name: Github-CI
on: [push, pull_request]
jobs:
build_third_party:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Building squick third party lib
run: |
if [ "${{ matrix.os }}" = "ubuntu-20.04" ]; then
cd tools && ./build_third_party.sh
elif [ "${{ matrix.os }}" = "macOS-latest" ]; then
echo "to do"
elif [ "${{ matrix.os }}" = "windows-latest" ]; then
cd tools && ./clone_thirdparty_build.bat
fi
- name: Building squick tools
run: |
if [ "${{ matrix.os }}" = "ubuntu-20.04" ]; then
cd tools && ./build_sqkctl.sh
elif [ "${{ matrix.os }}" = "macOS-latest" ]; then
echo "to do"
elif [ "${{ matrix.os }}" = "macOS-latest" ]; then
fi
- name: Building squick
run: |
if [ "${{ matrix.os }}" = "ubuntu-20.04" ]; then
cd tools && ./build_squick.sh
elif [ "${{ matrix.os }}" = "macOS-latest" ]; then
echo "to do"
fi
- name: Geneating deploy files
run: |
if [ "${{ matrix.os }}" = "ubuntu-20.04" ]; then
cd tools && ./generate_deploy.sh
elif [ "${{ matrix.os }}" = "macOS-latest" ]; then
echo "to do"
fi