Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
i0gan committed Mar 18, 2024
1 parent 8ab869a commit 0f9663d
Showing 1 changed file with 24 additions and 22 deletions.
46 changes: 24 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,50 +10,52 @@ jobs:
os: [ubuntu-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 == 'macOS-latest'
- name: Building squick third party library
if: matrix.os == 'ubuntu-latest'
run: |
cd tools && ./build_third_party.sh
if: 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 == 'macOS-latest'
- name: Building sqkctl tools
if: matrix.os == 'ubuntu-latest'
run: |
cd tools && ./build_sqkctl.sh
if: 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 == 'macOS-latest'
- name: Building squick project
if: matrix.os == 'ubuntu-latest'
run: |
cd tools && ./build_squick.sh
if: 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 == 'macOS-latest'
- name: Geneating deploy files
if: matrix.os == 'ubuntu-latest'
run: |
cd tools && ./generate_deploy.sh
cd ../deploy
tree
- name: Geneating deploy files for windows
if: matrix.os == 'macOS-latest'
run: |
cd tools && ./generate_deploy.sh
if: matrix.os == 'windows-latest'
run: |
cd tools
.\generate_deploy.bat
cd ..\deploy
tree
.\generate_deploy.bat

0 comments on commit 0f9663d

Please sign in to comment.