Auto merge of #28724 - servo:jdm-patch-52, r=jdm

Disable UWP packaging on CI.

Due to #28721, we cannot merge any PRs until we regenerate the code signing certificate for UWP builds. Until that happens, let's turn off UWP packaging on PRs.
This commit is contained in:
bors-servo 2022-03-06 09:48:37 -05:00 committed by GitHub
commit 66dec13ab6
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)