From be6b37ae002c4cb2b3c11d4e92089b8b2fa60837 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 30 Mar 2023 18:31:41 -0400 Subject: [PATCH] attempting to just run the pwsh script with just hardcoded command. --- .github/workflows/main.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ae6444c..f0675e7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,18 +36,18 @@ jobs: - name: Run PowerShell build script shell: pwsh env: - CC: clang - CXX: clang++ - BUILD_TYPE: ${{ github.event.inputs.type }} - RUN_TESTS: ${{ github.event.inputs.test }} + # CC: clang + # CXX: clang++ + # BUILD_TYPE: ${{ github.event.inputs.type }} + # RUN_TESTS: ${{ github.event.inputs.test }} run: | - $ErrorActionPreference = "Stop" + # $ErrorActionPreference = "Stop" - $type = $env:BUILD_TYPE - $test = $env:RUN_TESTS + # $type = $env:BUILD_TYPE + # $test = $env:RUN_TESTS - $args = @() - if (-not [string]::IsNullOrEmpty($type)) { $args += $type } - if (-not [string]::IsNullOrEmpty($test)) { $args += $test } + # $args = @() + # if (-not [string]::IsNullOrEmpty($type)) { $args += $type } + # if (-not [string]::IsNullOrEmpty($test)) { $args += $test } - & .\scripts\build.ps1 @args + & .\scripts\build.ps1 debug test