From b4941cdb0c88d455f4167a956bfbc292bbf659be Mon Sep 17 00:00:00 2001 From: dave caruso Date: Mon, 1 Apr 2024 08:55:21 -0700 Subject: [PATCH] not canary --- .github/workflows/bun-windows.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bun-windows.yml b/.github/workflows/bun-windows.yml index 2c26dc9e94..05616cc718 100644 --- a/.github/workflows/bun-windows.yml +++ b/.github/workflows/bun-windows.yml @@ -88,7 +88,7 @@ jobs: CPU_TARGET=${{ matrix.cpu }} TRIPLET=${{ matrix.arch }}-windows-msvc GIT_SHA=${{ github.sha }} - CANARY=${{ env.canary == 'true' && steps.canary.outputs.canary_revision || '0' }} + CANARY=0 ZIG_OPTIMIZE=ReleaseSafe # TODO(@paperdave): enable ASSERTIONS=1 platforms: linux/${{ runner.arch == 'X64' && 'amd64' || 'arm64' }} @@ -245,7 +245,8 @@ jobs: # $env:AWS_SECRET_ACCESS_KEY="${{ secrets.CACHE_S3_SECRET_ACCESS_KEY }}" # $SCCACHE="$PWD/${sczip}/${sczip}/sccache.exe" - $CANARY_REVISION = if (Test-Path build/.canary_revision) { Get-Content build/.canary_revision } else { "0" } + # $CANARY_REVISION = if (Test-Path build/.canary_revision) { Get-Content build/.canary_revision } else { "0" } + $CANARY_REVISION = 0 .\scripts\env.ps1 ${{ matrix.cpu == 'nehalem' && '-Baseline' || '' }} .\scripts\update-submodules.ps1 @@ -310,7 +311,8 @@ jobs: .\scripts\update-submodules.ps1 .\scripts\env.ps1 ${{ matrix.cpu == 'nehalem' && '-Baseline' || '' }} Set-Location build - $CANARY_REVISION = if (Test-Path build/.canary_revision) { Get-Content build/.canary_revision } else { "0" } + # $CANARY_REVISION = if (Test-Path build/.canary_revision) { Get-Content build/.canary_revision } else { "0" } + $CANARY_REVISION = 0 cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release ` -DNO_CODEGEN=1 ` -DNO_CONFIGURE_DEPENDS=1 `