Skip to content

Commit 5cdcab8

Browse files
authored
Merge branch 'master' into dabrow/ios-functests
2 parents a217f82 + 2981c85 commit 5cdcab8

17 files changed

+22
-8
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ GNUmakefile text
7777
*.pbxproj -text diff -merge
7878

7979
## Resource files and UI design descriptions
80-
*.rc text
80+
*.rc text eol=crlf
8181

8282
## Diff/patch files
8383
*.diff text diff -merge

.github/workflows/test-win-latest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ jobs:
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
GIT_PULL_TOKEN: ${{ secrets.GIT_PULL_TOKEN }}
31-
run: build-tests.bat ${{ matrix.arch }} ${{ matrix.config }}
31+
shell: cmd
32+
run: build-tests.cmd ${{ matrix.arch }} ${{ matrix.config }}

RunOACR.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
2+
cd %~dp0
23
@setlocal ENABLEEXTENSIONS
34
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\VsDevCmd.bat"
45

Solutions/VersionInfo.rc

-2.64 KB
Binary file not shown.

build-Win32Debug.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
2+
cd %~dp0
23
call tools\gen-version.cmd
34
@setlocal ENABLEEXTENSIONS
45

build-Win32Release.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
2+
cd %~dp0
23
call tools\gen-version.cmd
34
@setlocal ENABLEEXTENSIONS
45

build-all.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
2+
cd %~dp0
23
call tools\gen-version.cmd
34
@setlocal ENABLEEXTENSIONS
45

build-cmake-clang.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
2+
cd %~dp0
23
setlocal enableextensions
34
setlocal enabledelayedexpansion
45
set ROOT=%~dp0

build-docker.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
2+
cd %~dp0
23
if "%~1"=="" goto help
34

45
del .buildtools 2>NUL

build-tests.bat renamed to build-tests.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
2+
cd %~dp0
23
call tools\gen-version.cmd
34
@setlocal ENABLEEXTENSIONS
45

0 commit comments

Comments
 (0)