Skip to content

Commit

Permalink
build v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Dec 7, 2019
1 parent 09ca98e commit 6d9b83d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@ function run() {
yield exec.exec("sudo apt-get install build-essential libgl1-mesa-dev -y");
}
yield exec.exec("pip3 install setuptools wheel");
yield exec.exec("pip3 install \"aqtinstall==0.5.*\"");
yield exec.exec("pip3 install \"aqtinstall==0.6.*\"");
const dir = (core.getInput("dir") || process.env.RUNNER_WORKSPACE) + "/Qt";
const version = core.getInput("version");
let host = core.getInput("host");
let target = core.getInput("target");
let arch = core.getInput("arch");
let modules = core.getInput("modules");
//set host automatically if omitted
if (!host) {
switch (process.platform) {
Expand Down Expand Up @@ -69,6 +70,9 @@ function run() {
if (arch) {
args.push(`${arch}`);
}
if (modules) {
args.push(`-m ${modules}`);
}
//accomodate for differences in python 3 executable name
let pythonName = "python3";
if (process.platform == "win32") {
Expand Down

0 comments on commit 6d9b83d

Please sign in to comment.