Skip to content

Commit 3a90fa8

Browse files
committed
Merge branch 'master' into improve-workgroup-scan-2
2 parents 7a2065a + 3b3d45c commit 3a90fa8

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

.github/workflows/build-nabla.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,3 +251,19 @@ jobs:
251251
publish_dir: .badge-public
252252
keep_files: true
253253
commit_message: "[CI] badges update"
254+
255+
deploy-production:
256+
name: Deploy to production host
257+
if: ${{ always() && github.ref == 'refs/heads/master' }}
258+
needs: build-windows
259+
runs-on: ubuntu-latest
260+
261+
steps:
262+
- name: Pull latest images, re-run containers
263+
uses: appleboy/ssh-action@v1
264+
with:
265+
host: ${{ secrets.CE_HOST }}
266+
username: ${{ secrets.CE_USER }}
267+
key: ${{ secrets.CE_KEY }}
268+
script: |
269+
powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -NoExit -File C:\Scripts\startup-docker.ps1

compose.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,10 @@ services:
1313
- type: bind
1414
source: C:\Windows\System32
1515
target: C:\mount\Windows\System32
16-
read_only: true
16+
read_only: true
17+
restart: always
18+
19+
networks:
20+
default:
21+
external: true
22+
name: docker_default

src/nbl/video/utilities/CAssetConverter.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5344,8 +5344,7 @@ ISemaphore::future_t<IQueue::RESULT> CAssetConverter::convert_impl(SReserveResul
53445344
retval.set({params.transfer->scratchSemaphore.semaphore,params.transfer->scratchSemaphore.value});
53455345
}
53465346
// reset original callback
5347-
if (bool(origXferStallCallback))
5348-
params.transfer->overflowCallback = std::move(origXferStallCallback);
5347+
params.transfer->overflowCallback = std::move(origXferStallCallback);
53495348

53505349
// Its too dangerous to leave an Intended Transfer Submit hanging around that needs to be submitted for Compute to make forward progress outside of this utility,
53515350
// and doing transfer-signals-after-compute-wait timeline sema tricks are not and option because:

0 commit comments

Comments
 (0)