Skip to content

Commit

Permalink
Try cleaning self hosted between runs
Browse files Browse the repository at this point in the history
  • Loading branch information
macumber committed Jun 16, 2024
1 parent 0e7770a commit 6af944b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/app_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ jobs:
begin_group "Default profile"
if [ "${{ matrix.SELF_HOSTED }}" == "true" ]; then
export CONAN_USER_HOME=$HOME
export CONAN_USER_HOME=$HOME${DIR_SEP}actions-runner${DIR_SEP}conan-cache
else
export CONAN_USER_HOME="${{ github.workspace }}${DIR_SEP}conan-cache"
fi;
Expand Down Expand Up @@ -404,6 +404,7 @@ jobs:
if: ${{ matrix.SELF_HOSTED }}
run: |
set -x
cmake -E rm -rf ./build
cmake -E make_directory ./build
if [ "$RUNNER_OS" == "macOS" ]; then
Expand Down Expand Up @@ -490,19 +491,18 @@ jobs:
conan cache clean --source --build --download --temp
ccache --show-stats -vv || ccache --show-stats || true
- name: Test bed Sign inner portable executable files and exe package (Windows 2022)
- name: Test bed Sign inner portable executable files and exe package (Windows)
working-directory: ./build
if: (matrix.os == 'windows-2022')
if: runner.os == 'Windows'
shell: powershell
run: |
$installer_exe = Get-ChildItem -Filter "${{ matrix.BINARY_PKG_PATH }}/*.${{ env.BINARY_EXT }}" -File | Select-Object -First 1 | % { $_.FullName}
echo $installer_exe
echo "$installer_exe"
- name: Sign inner portable executable files and exe package (Windows 2022)
- name: Sign inner portable executable files and exe package (Windows)
working-directory: ./build
# if: (runner.os == 'Windows')
if: contains(github.ref, 'refs/tags') && (matrix.os == 'windows-2022')
if: contains(github.ref, 'refs/tags') && (runner.os == 'Windows')
shell: powershell
run: |
# Install signpath
Expand Down

0 comments on commit 6af944b

Please sign in to comment.