Skip to content

Commit a1bfdb6

Browse files
authored
Auto merge of servo#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 ___
2 parents ce57256 + ef88355 commit a1bfdb6

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- name: Upload
8686
if: ${{ inputs.upload }}
8787
run: |
88-
python mach upload-nightly win --secret-from-environment `
88+
python mach upload-nightly windows-msvc --secret-from-environment `
8989
--github-release-id ${{ inputs.github-release-id }}
9090
env:
9191
S3_UPLOAD_CREDENTIALS: ${{ secrets.S3_UPLOAD_CREDENTIALS }}

python/servo/package_commands.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,9 @@
5353
'linux': [
5454
'release/servo-tech-demo.tar.gz',
5555
],
56-
'linux-layout2020': [
57-
'release/servo-tech-demo.tar.gz',
58-
],
5956
'mac': [
6057
'release/servo-tech-demo.dmg',
6158
],
62-
'mac-layout2020': [
63-
'release/servo-tech-demo.dmg',
64-
],
6559
'macbrew': [
6660
'release/brew/servo.tar.gz',
6761
],
@@ -73,10 +67,6 @@
7367
r'release\msi\Servo.exe',
7468
r'release\msi\Servo.zip',
7569
],
76-
'windows-msvc-layout2020': [
77-
r'release\msi\Servo.exe',
78-
r'release\msi\Servo.zip',
79-
],
8070
}
8171

8272

0 commit comments

Comments
 (0)