Disable UWP packaging on CI.

This commit is contained in:
Josh Matthews 2022-03-05 23:44:08 -05:00 committed by GitHub
parent d551e63b29
commit 2e61a3b1ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,11 +54,11 @@ jobs:
- name: Release build - name: Release build
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}" working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
run: python mach build --release --target=x86_64-uwp-windows-msvc run: python mach build --release --target=x86_64-uwp-windows-msvc
- name: Package #- name: Package
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}" # working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
run: python mach package --release --target=x86_64-uwp-windows-msvc --uwp=x64 # run: python mach package --release --target=x86_64-uwp-windows-msvc --uwp=x64
env: # env:
CODESIGN_CERT: ${{ secrets.WINDOWS_CODESIGN_CERT }} # CODESIGN_CERT: ${{ secrets.WINDOWS_CODESIGN_CERT }}
- name: Tidy - name: Tidy
run: python mach test-tidy --force-cpp --no-wpt run: python mach test-tidy --force-cpp --no-wpt
@ -79,11 +79,11 @@ jobs:
- name: Release build - name: Release build
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}" working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
run: python mach build --release --target=aarch64-uwp-windows-msvc run: python mach build --release --target=aarch64-uwp-windows-msvc
- name: Package #- name: Package
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}" # working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
run: python mach package --release --target=aarch64-uwp-windows-msvc --uwp=arm64 # run: python mach package --release --target=aarch64-uwp-windows-msvc --uwp=arm64
env: # env:
CODESIGN_CERT: ${{ secrets.WINDOWS_CODESIGN_CERT }} # CODESIGN_CERT: ${{ secrets.WINDOWS_CODESIGN_CERT }}
build-mac: build-mac:
name: Build (macOS) name: Build (macOS)