Skip to content

Commit

Permalink
Update windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
s12mmm3 committed Feb 7, 2024
1 parent ab34211 commit 72279e6
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,7 @@ jobs:
id: build
shell: cmd
run: |
mkdir ${{ env.BUILD_PATH }}
cd ${{ env.BUILD_PATH }}
cmake --version
cmake -A ${{ matrix.arch }} -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DCMAKE_INSTALL_PREFIX=${{ github.workspace }} ../
cmake -A ${{ matrix.arch }} -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DCMAKE_INSTALL_PREFIX=${{ github.workspace }} -B ${{ env.BUILD_PATH }}
ls
# CMake Install
- name: CMake Install
Expand All @@ -82,7 +79,7 @@ jobs:
shell: pwsh
run: |
cd ${{ github.workspace }}/${{ env.BUILD_PATH }}
cmake --build . --target INSTALL --config ${{ env.BUILD_TYPE }}
cmake --build ${{ env.BUILD_PATH }} --target INSTALL --config ${{ env.BUILD_TYPE }}
ls
# 打包
- name: Package
Expand Down

0 comments on commit 72279e6

Please sign in to comment.