Skip to content

Commit

Permalink
Try fix CI
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Logaev <[email protected]>
  • Loading branch information
mxlgv committed Mar 12, 2024
1 parent 2298462 commit 089f956
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 17 deletions.
24 changes: 9 additions & 15 deletions .github/workflows/build-win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,23 @@ on: [pull_request, push]
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: git
- run: git config --global core.autocrlf input
- uses: actions/checkout@v4
- name: Build Dino
run: |
./build-win64.sh --prepare
./build-win64.sh
msys2 -c './build-win64.sh --prepare'
msys2 -c './build-win64.sh'
- name: Build Dino Installer
run: |
./build-win64.sh --build-installer
- name: Get Dino Installer
uses: actions/upload-artifact@v3
msys2 -c './build-win64.sh --build-installer'
- name: Upload Dino Installer
uses: actions/upload-artifact@v4
with:
name: windows-installer
name: dino-installer
path: windows-installer/dino-installer.exe
- name: Get Dino distribution
uses: actions/upload-artifact@v3
with:
name: win64-dist
path: windows-installer/win64-dist
1 change: 0 additions & 1 deletion build-win64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ prepare()
mingw64/mingw-w64-x86_64-gst-plugins-ugly \
mingw64/mingw-w64-x86_64-nsis \
mingw64/mingw-w64-x86_64-libsignal-protocol-c \
mingw64/mingw-w64-x86_64-ninja \
mingw64/mingw-w64-x86_64-icu \
mingw64/mingw-w64-x86_64-webrtc-audio-processing \
git \
Expand Down
1 change: 0 additions & 1 deletion cmake/ComputeVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ function(_compute_version_from_git)
if (NOT GIT_EXECUTABLE)
find_package(Git QUIET)
if (NOT GIT_FOUND)
message(FATAL_ERROR "Git not found!")
return()
endif ()
endif (NOT GIT_EXECUTABLE)
Expand Down

0 comments on commit 089f956

Please sign in to comment.