ci: don't build cli for windows 7

This commit is contained in:
chyyran 2024-10-02 17:40:23 -04:00 committed by Ronny Chan
parent fc47fb4c5a
commit f189468f6d

View file

@ -149,12 +149,3 @@ jobs:
with: with:
name: ${{ format('librashader-x86_64-win7-windows-{0}-{1}', github.sha, matrix.profile) }} name: ${{ format('librashader-x86_64-win7-windows-{0}-{1}', github.sha, matrix.profile) }}
path: ${{ format('target/x86_64-win7-windows-msvc/{0}/librashader.*', matrix.profile) }} path: ${{ format('target/x86_64-win7-windows-msvc/{0}/librashader.*', matrix.profile) }}
- name: Build librashader CLI
if: matrix.profile == 'release'
run: cargo build -p librashader-cli --release --target x86_64-win7-windows-msvc -Zbuild-std
- name: Upload librashader-cli
uses: actions/upload-artifact@v4.4.0
if: matrix.profile == 'release'
with:
name: ${{ format('librashader-cli-x86_64-win7-windows-msvc-{0}', github.sha) }}
path: ${{ format('target/x86_64-win7-windows-msvc/{0}/librashader-cli.exe', matrix.profile) }}