Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Notexe committed Jan 3, 2024
1 parent 95890e3 commit ba50fa1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:

- name: Generate projects
run: |
mkdir cmake-build-release
cd cmake-build-release
mkdir cmake-build-RelWithDebInfo
cd cmake-build-RelWithDebInfo
cmake -G Ninja `
-DCMAKE_BUILD_TYPE=RelWithDebInfo `
-DCMAKE_CXX_COMPILER=cl `
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Build
run: |
cmake --build cmake-build-release --target ${{ matrix.target }}
cmake --build cmake-build-RelWithDebInfo --target ${{ matrix.target }}
- name: Fetch hash lists
run: |
Expand All @@ -52,9 +52,9 @@ jobs:
- name: Prepare build
run: |
7z e latest-hashes.7z -o_rpkg
cp cmake-build-release/*.dll _rpkg
cp cmake-build-release/*.exe _rpkg
cp cmake-build-release/rpkg*.lib _rpkg
cp cmake-build-RelWithDebInfo/*.dll _rpkg
cp cmake-build-RelWithDebInfo/*.exe _rpkg
cp cmake-build-RelWithDebInfo/rpkg*.lib _rpkg
cp thirdparty/quickentity-ffi/*.dll _rpkg
cp thirdparty/assimp/*.dll _rpkg
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: rpkg-lib
path: cmake-build-release
path: cmake-build-RelWithDebInfo

- name: Build
run: |
Expand Down

0 comments on commit ba50fa1

Please sign in to comment.