зеркало из https://github.com/Azure/azure-utpm-c.git
Родитель
be3015c3a4
Коммит
863e456aed
|
@ -41,7 +41,7 @@ jobs:
|
|||
- job: windowsx86
|
||||
displayName: Windows x86
|
||||
pool:
|
||||
name: 'sdk-c--win-vs2017'
|
||||
name: 'sdk-c--win-vs2022'
|
||||
steps:
|
||||
- script: |
|
||||
if exist jenkins\windows_c.cmd (
|
||||
|
@ -65,7 +65,7 @@ jobs:
|
|||
PROVISIONING_CONNECTION_STRING_INVALIDCERT: $(PROVISIONING-CONNECTION-STRING-INVALIDCERT)
|
||||
- job: windowsx64
|
||||
pool:
|
||||
name: 'sdk-c--win-vs2017'
|
||||
name: 'sdk-c--win-vs2022'
|
||||
displayName: 'Windows x64'
|
||||
steps:
|
||||
- script: |
|
||||
|
@ -94,7 +94,7 @@ jobs:
|
|||
- job: windowsdynamic
|
||||
displayName: Windows Dynamic
|
||||
pool:
|
||||
name: 'sdk-c--win-vs2017'
|
||||
name: 'sdk-c--win-vs2022'
|
||||
steps:
|
||||
- script: |
|
||||
if exist jenkins\windows_c_build_as_dynamic.cmd (
|
||||
|
@ -264,7 +264,7 @@ jobs:
|
|||
variables:
|
||||
CodeQL.Enabled: false
|
||||
pool:
|
||||
name: OSX
|
||||
vmImage: 'macOS-13'
|
||||
steps:
|
||||
- script: |
|
||||
if [ -f "jenkins/osx_gcc_openssl.sh" ]
|
||||
|
@ -295,7 +295,7 @@ jobs:
|
|||
variables:
|
||||
CodeQL.Enabled: false
|
||||
pool:
|
||||
name: OSX
|
||||
vmImage: 'macOS-13'
|
||||
steps:
|
||||
- script: |
|
||||
if [ -f "jenkins/osx_xcode_native.sh" ]
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 8ee0e5d88d1771d33e36d38d392ec9d9ae13ea55
|
||||
Subproject commit 9e8599f960f8942f874f8dcacf7d4e6d88266296
|
|
@ -7,5 +7,5 @@ int main(void)
|
|||
{
|
||||
size_t failedTestCount = 0;
|
||||
RUN_TEST_SUITE(tpm_codec_ut, failedTestCount);
|
||||
return failedTestCount;
|
||||
return (int)failedTestCount;
|
||||
}
|
||||
|
|
|
@ -7,5 +7,5 @@ int main(void)
|
|||
{
|
||||
size_t failedTestCount = 0;
|
||||
RUN_TEST_SUITE(tpm_comm_emulator_ut, failedTestCount);
|
||||
return failedTestCount;
|
||||
return (int)failedTestCount;
|
||||
}
|
||||
|
|
|
@ -7,5 +7,5 @@ int main(void)
|
|||
{
|
||||
size_t failedTestCount = 0;
|
||||
RUN_TEST_SUITE(tpm_comm_linux_ut, failedTestCount);
|
||||
return failedTestCount;
|
||||
return (int)failedTestCount;
|
||||
}
|
||||
|
|
|
@ -7,5 +7,5 @@ int main(void)
|
|||
{
|
||||
size_t failedTestCount = 0;
|
||||
RUN_TEST_SUITE(tpm_comm_win32_ut, failedTestCount);
|
||||
return failedTestCount;
|
||||
return (int)failedTestCount;
|
||||
}
|
||||
|
|
|
@ -7,5 +7,5 @@ int main(void)
|
|||
{
|
||||
size_t failedTestCount = 0;
|
||||
RUN_TEST_SUITE(tpm_memory_ut, failedTestCount);
|
||||
return failedTestCount;
|
||||
return (int)failedTestCount;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче