mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Remove UWP/HoloLens CI & Nightly jobs.
Servo [TSC has decided][1] to halt support for UWP platform. This PR only removes the CI & Nightly jobs and doesn't modify any code related to UWP support. [1]: https://github.com/servo/project/blob/master/governance/tsc/tsc-2023-01-23.md#supported-platforms Signed-off-by: Mukilan Thiyagarajan <mukilanthiagarajan@gmail.com>
This commit is contained in:
parent
cc76ec3373
commit
8f60df4fdc
3 changed files with 2 additions and 82 deletions
51
.github/workflows/main.yml
vendored
51
.github/workflows/main.yml
vendored
|
@ -59,56 +59,6 @@ jobs:
|
||||||
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 smoketest --angle
|
run: python mach smoketest --angle
|
||||||
|
|
||||||
build-uwp-x64:
|
|
||||||
name: Build (Windows UWP x64)
|
|
||||||
runs-on: windows-2019
|
|
||||||
needs: ["decision"]
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 2
|
|
||||||
- name: Copy to C drive
|
|
||||||
run: cp D:\a C:\ -Recurse
|
|
||||||
- name: Bootstrap
|
|
||||||
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
|
|
||||||
run: |
|
|
||||||
python -m pip install --upgrade pip virtualenv
|
|
||||||
python mach fetch
|
|
||||||
- name: Release build
|
|
||||||
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
|
|
||||||
run: python mach build --release --target=x86_64-uwp-windows-msvc
|
|
||||||
#- name: Package
|
|
||||||
# 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
|
|
||||||
# env:
|
|
||||||
# CODESIGN_CERT: ${{ secrets.WINDOWS_CODESIGN_CERT }}
|
|
||||||
- name: Tidy
|
|
||||||
run: python mach test-tidy --force-cpp --no-wpt
|
|
||||||
|
|
||||||
build-uwp-arm64:
|
|
||||||
name: Build (Windows UWP arm64)
|
|
||||||
runs-on: windows-2019
|
|
||||||
needs: ["decision"]
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 2
|
|
||||||
- name: Copy to C drive
|
|
||||||
run: cp D:\a C:\ -Recurse
|
|
||||||
- name: Bootstrap
|
|
||||||
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
|
|
||||||
run: |
|
|
||||||
python -m pip install --upgrade pip virtualenv
|
|
||||||
python mach fetch
|
|
||||||
- name: Release build
|
|
||||||
working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
|
|
||||||
run: python mach build --release --target=aarch64-uwp-windows-msvc
|
|
||||||
#- name: Package
|
|
||||||
# working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}"
|
|
||||||
# run: python mach package --release --target=aarch64-uwp-windows-msvc --uwp=arm64
|
|
||||||
# env:
|
|
||||||
# CODESIGN_CERT: ${{ secrets.WINDOWS_CODESIGN_CERT }}
|
|
||||||
|
|
||||||
build-mac:
|
build-mac:
|
||||||
name: Build (macOS)
|
name: Build (macOS)
|
||||||
runs-on: macos-12
|
runs-on: macos-12
|
||||||
|
@ -296,7 +246,6 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
needs:
|
||||||
- "build-win"
|
- "build-win"
|
||||||
- "build-uwp-x64"
|
|
||||||
- "build-linux"
|
- "build-linux"
|
||||||
- "build-mac"
|
- "build-mac"
|
||||||
- "linux-wpt"
|
- "linux-wpt"
|
||||||
|
|
31
.github/workflows/nightly.yml
vendored
31
.github/workflows/nightly.yml
vendored
|
@ -111,34 +111,3 @@ jobs:
|
||||||
run: python mach upload-nightly windows-msvc --secret-from-environment
|
run: python mach upload-nightly windows-msvc --secret-from-environment
|
||||||
env:
|
env:
|
||||||
S3_UPLOAD_CREDENTIALS: ${{ secrets.S3_UPLOAD_CREDENTIALS }}
|
S3_UPLOAD_CREDENTIALS: ${{ secrets.S3_UPLOAD_CREDENTIALS }}
|
||||||
|
|
||||||
upload-uwp:
|
|
||||||
name: Upload nightly (UWP)
|
|
||||||
runs-on: windows-2019
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 2
|
|
||||||
- name: Copy to C drive
|
|
||||||
run: cp D:\a C:\ -Recurse
|
|
||||||
- name: Bootstrap
|
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
|
||||||
run: |
|
|
||||||
python -m pip install --upgrade pip virtualenv
|
|
||||||
python mach fetch
|
|
||||||
- name: Release build (x64)
|
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
|
||||||
run: python mach build --release --target=x86_64-uwp-windows-msvc
|
|
||||||
- name: Release build (arm64)
|
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
|
||||||
run: python mach build --release --target=aarch64-uwp-windows-msvc
|
|
||||||
- name: Package
|
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
|
||||||
run: python mach package --release --target=x86_64-uwp-windows-msvc --uwp=x64 --uwp=arm64
|
|
||||||
env:
|
|
||||||
CODESIGN_CERT: ${{ secrets.WINDOWS_CODESIGN_CERT }}
|
|
||||||
- name: Upload
|
|
||||||
working-directory: "C:\\a\\servo\\servo"
|
|
||||||
run: python mach upload-nightly uwp --secret-from-environment
|
|
||||||
env:
|
|
||||||
S3_UPLOAD_CREDENTIALS: ${{ secrets.S3_UPLOAD_CREDENTIALS }}
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Using Servo on HoloLens 2
|
# Using Servo on HoloLens 2
|
||||||
|
|
||||||
|
**NOTE: HoloLens is no longer a [supported platform](https://github.com/servo/project/blob/master/governance/tsc/tsc-2023-01-23.md#supported-platforms)**
|
||||||
|
|
||||||
To build Servo for the HoloLens 2, see [the wiki](https://github.com/servo/servo/wiki/Building-for-UWP).
|
To build Servo for the HoloLens 2, see [the wiki](https://github.com/servo/servo/wiki/Building-for-UWP).
|
||||||
|
|
||||||
## Web development workflow
|
## Web development workflow
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue