mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Use codesigning in UWP builds.
This commit is contained in:
parent
137236dc2a
commit
57bc79b0d5
2 changed files with 14 additions and 14 deletions
14
.github/workflows/main.yml
vendored
14
.github/workflows/main.yml
vendored
|
@ -57,8 +57,8 @@ jobs:
|
||||||
- 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
|
||||||
|
|
||||||
|
@ -72,18 +72,18 @@ jobs:
|
||||||
- name: Copy to C drive
|
- name: Copy to C drive
|
||||||
run: cp D:\a C:\ -Recurse
|
run: cp D:\a C:\ -Recurse
|
||||||
- name: Bootstrap
|
- name: Bootstrap
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip virtualenv
|
python -m pip install --upgrade pip virtualenv
|
||||||
python mach fetch
|
python mach fetch
|
||||||
- name: Release build
|
- name: Release build
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
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\\servo\\servo"
|
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)
|
||||||
|
|
|
@ -57,8 +57,8 @@ jobs:
|
||||||
- name: Package
|
- name: Package
|
||||||
working-directory: "C:\\a\\${ REPOSITORY_NAME }\\${ REPOSITORY_NAME }"
|
working-directory: "C:\\a\\${ REPOSITORY_NAME }\\${ 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: ${{ CODESIGN_CERT }}
|
CODESIGN_CERT: ${ CODESIGN_CERT }
|
||||||
- name: Tidy
|
- name: Tidy
|
||||||
run: python mach test-tidy --force-cpp --no-wpt
|
run: python mach test-tidy --force-cpp --no-wpt
|
||||||
|
|
||||||
|
@ -72,18 +72,18 @@ jobs:
|
||||||
- name: Copy to C drive
|
- name: Copy to C drive
|
||||||
run: cp D:\a C:\ -Recurse
|
run: cp D:\a C:\ -Recurse
|
||||||
- name: Bootstrap
|
- name: Bootstrap
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
working-directory: "C:\\a\\${ REPOSITORY_NAME }\\${ REPOSITORY_NAME }"
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip virtualenv
|
python -m pip install --upgrade pip virtualenv
|
||||||
python mach fetch
|
python mach fetch
|
||||||
- name: Release build
|
- name: Release build
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
working-directory: "C:\\a\\${ REPOSITORY_NAME }\\${ 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\\servo\\servo"
|
working-directory: "C:\\a\\${ REPOSITORY_NAME }\\${ 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: ${{ CODESIGN_CERT }}
|
CODESIGN_CERT: ${ CODESIGN_CERT }
|
||||||
|
|
||||||
build-mac:
|
build-mac:
|
||||||
name: Build (macOS)
|
name: Build (macOS)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue