Skip to content

Merge pull request #25 from pwnsky/dev #6

Merge pull request #25 from pwnsky/dev

Merge pull request #25 from pwnsky/dev #6

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]
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"
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"
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