Skip to content

Commit 49465b8

Browse files
committed
Remove mirror option because it's nearly useless now
1 parent 5c4038e commit 49465b8

File tree

3 files changed

+0
-14
lines changed

3 files changed

+0
-14
lines changed

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,6 @@ Possible values: `qtcharts`, `qtdatavis3d`, `qtpurchasing`, `qtvirtualkeyboard`,
8080

8181
Default: none
8282

83-
### `mirror`
84-
Forces a different Qt mirror in case there is a problem with the default.
85-
86-
If you have problems, you can try: `http://mirrors.ocf.berkeley.edu/qt/`
87-
88-
Default: none
89-
9083
### `cached`
9184
If it is set to `true`, then Qt won't be downloaded, but the environment variables will be set, and essential build tools will be installed.
9285

action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ inputs:
2222
default: 'true'
2323
modules:
2424
description: 'Additional Qt modules to install'
25-
mirror:
26-
description: 'Force a Qt mirror in case the default is not working'
2725
cached:
2826
description: "Whether or not to actually download Qt"
2927
default: 'false'

src/main.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ async function run() {
4343
let host = core.getInput("host");
4444
const target = core.getInput("target");
4545
let arch = core.getInput("arch");
46-
const mirror = core.getInput("mirror");
4746
const extra = core.getInput("extra");
4847
const modules = core.getInput("modules");
4948

@@ -97,10 +96,6 @@ async function run() {
9796

9897
let extraArgs = ["-O", `${dir}`]
9998

100-
if (mirror) {
101-
extraArgs.push("-b");
102-
extraArgs.push(mirror);
103-
}
10499
if (extra) {
105100
extra.split(" ").forEach(function(string) {
106101
extraArgs.push(string);

0 commit comments

Comments
 (0)