diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b23308ab3..88ce31828 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,18 +44,18 @@ jobs: - full-gpu-tests: false # Self-hosted aarch64 build - os: linux + config: release compiler: gcc platform: aarch64 - config: release warnings-as-errors: false test-category: smoke full-gpu-tests: false runs-on: [self-hosted, Linux, ARM64] # Self-hosted full gpu build - os: windows + config: release compiler: cl platform: x86_64 - config: release warnings-as-errors: false test-category: full full-gpu-tests: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2fefe5bd9..5548c77b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -154,10 +154,10 @@ jobs: cpack --preset "$config" -G ZIP cpack --preset "$config" -G TGZ triggering_ref=${{ github.ref_name }} - base=$(pwd)/slang-${triggering_ref#v}-${{matrix.os}}-${{matrix.platform}} - mv "$(pwd)/build/dist-${config}/slang.zip" "${base}.zip" + base=slang-${triggering_ref#v}-${{matrix.os}}-${{matrix.platform}} + mv --verbose "$(pwd)/build/dist-${config}/slang.zip" "${base}.zip" echo "SLANG_BINARY_ARCHIVE_ZIP=${base}.zip" >> $GITHUB_OUTPUT - mv "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz" + mv --verbose "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz" echo "SLANG_BINARY_ARCHIVE_TAR=${base}.tar.gz" >> $GITHUB_OUTPUT - name: File check |
