Skip to content

Commit 4d488ab

Browse files
committed
actions: disable man-db auto update
actions/runner-images#10977
1 parent a4578ec commit 4d488ab

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/CD.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v4
1919
with: { fetch-depth: 0 }
20+
- name: Disable man-db triggers
21+
run: |
22+
echo "set man-db/auto-update false" | sudo debconf-communicate
23+
sudo dpkg-reconfigure man-db
2024
- name: Install Dependencies
2125
run: |
2226
sudo apt-get update

.github/workflows/CI.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
- name: Checkout
3232
uses: actions/checkout@v4
3333
with: { fetch-depth: 0 }
34+
- name: Disable man-db triggers
35+
run: |
36+
echo "set man-db/auto-update false" | sudo debconf-communicate
37+
sudo dpkg-reconfigure man-db
3438
- name: Install Dependencies
3539
run: |
3640
sudo apt-get update

src/SourceAutoRecord.vcxproj

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,17 @@
1515
<RootNamespace>SourceAutoRecord</RootNamespace>
1616
<ProjectName>SourceAutoRecord</ProjectName>
1717
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
18-
</PropertyGroup>
19-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
20-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
18+
<PlatformToolset>v142</PlatformToolset>
2119
<ConfigurationType>DynamicLibrary</ConfigurationType>
2220
<UseDebugLibraries>false</UseDebugLibraries>
23-
<PlatformToolset>v142</PlatformToolset>
2421
<CharacterSet>MultiByte</CharacterSet>
22+
</PropertyGroup>
23+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
24+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
2525
<CLRSupport>false</CLRSupport>
2626
</PropertyGroup>
2727
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
28-
<ConfigurationType>DynamicLibrary</ConfigurationType>
29-
<UseDebugLibraries>false</UseDebugLibraries>
30-
<PlatformToolset>v142</PlatformToolset>
3128
<WholeProgramOptimization>false</WholeProgramOptimization>
32-
<CharacterSet>MultiByte</CharacterSet>
3329
<UseOfMfc>false</UseOfMfc>
3430
</PropertyGroup>
3531
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

0 commit comments

Comments
 (0)