From 8a34d2ef5000861d48389ce048ae671de4248eae Mon Sep 17 00:00:00 2001 From: maron2000 <68574602+maron2000@users.noreply.github.com> Date: Tue, 5 Sep 2023 20:04:42 +0900 Subject: [PATCH 1/2] Test wait for VS build to finish (HX-DOS) --- .github/workflows/hxdos.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/hxdos.yml b/.github/workflows/hxdos.yml index 35bafd2afeb..7b4acacbf55 100644 --- a/.github/workflows/hxdos.yml +++ b/.github/workflows/hxdos.yml @@ -81,6 +81,10 @@ jobs: cd $top/package/ $top/vs/tool/zip.exe -r -9 $top/dosbox-x-mingw-hx-dos-${{ env.timestamp }}.zip * cd $top + - name: Wait for VS 32bit build to finish (Release only) + shell: bash + run: | + sleep 30m - name: Download Windows build uses: robinraju/release-downloader@v1.8 with: From 6e337b4ba087dc9ccb423e361b26d06adf5711be Mon Sep 17 00:00:00 2001 From: maron2000 <68574602+maron2000@users.noreply.github.com> Date: Tue, 5 Sep 2023 21:20:49 +0900 Subject: [PATCH 2/2] HX-DOS Wait for 32bit VS builds to finish (Release version) HX-DOS version tests itself by running it on a VS build so wait until it is built. --- .github/workflows/hxdos.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/hxdos.yml b/.github/workflows/hxdos.yml index 7b4acacbf55..180e90aca92 100644 --- a/.github/workflows/hxdos.yml +++ b/.github/workflows/hxdos.yml @@ -82,9 +82,10 @@ jobs: $top/vs/tool/zip.exe -r -9 $top/dosbox-x-mingw-hx-dos-${{ env.timestamp }}.zip * cd $top - name: Wait for VS 32bit build to finish (Release only) + if: startsWith(github.ref, 'refs/tags/') shell: bash run: | - sleep 30m + sleep 40m - name: Download Windows build uses: robinraju/release-downloader@v1.8 with: