Skip to content

Commit

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

0 comments on commit 3b938ce

Please sign in to comment.