diff options
author | bors-servo <infra@servo.org> | 2023-07-09 11:40:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-09 11:40:36 +0200 |
commit | a1bfdb60e4857fc1c84bdc7ebbfd1817aeedad81 (patch) | |
tree | 34d689f9d2d0a39454e37d9b84d7521266638562 /python | |
parent | ce57256327fbb0ac20cefd796440b421951012ad (diff) | |
parent | ef883552486a1bf7c4764fc2f2fdb4b46123d2d2 (diff) | |
download | servo-a1bfdb60e4857fc1c84bdc7ebbfd1817aeedad81.tar.gz servo-a1bfdb60e4857fc1c84bdc7ebbfd1817aeedad81.zip |
Auto merge of #29984 - mukilan:fix-nightly-package-names, r=mrobinson
Fix package name for windows nightly
Also remove the 2020 specific packages.
The incorrect package name in windows.yml is causing nightly builds to fail.
---
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)
<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because ___
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/package_commands.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index b9c70a22f50..555a87a4127 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -53,15 +53,9 @@ PACKAGES = { 'linux': [ 'release/servo-tech-demo.tar.gz', ], - 'linux-layout2020': [ - 'release/servo-tech-demo.tar.gz', - ], 'mac': [ 'release/servo-tech-demo.dmg', ], - 'mac-layout2020': [ - 'release/servo-tech-demo.dmg', - ], 'macbrew': [ 'release/brew/servo.tar.gz', ], @@ -73,10 +67,6 @@ PACKAGES = { r'release\msi\Servo.exe', r'release\msi\Servo.zip', ], - 'windows-msvc-layout2020': [ - r'release\msi\Servo.exe', - r'release\msi\Servo.zip', - ], } |