Skip to content

Commit

Permalink
Build v2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Aug 14, 2021
1 parent ceaf354 commit c04feed
Show file tree
Hide file tree
Showing 4 changed files with 2,986 additions and 1,619 deletions.
6 changes: 5 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function run() {
// default on Ubuntu.
if (process.platform == "linux") {
let cmd0 = "apt-get update";
let cmd1 = "apt-get install build-essential libgl1-mesa-dev libxkbcommon-x11-0 libpulse-dev -y";
let cmd1 = "apt-get install build-essential libgl1-mesa-dev libxkbcommon-x11-0 libpulse-dev libxcb-util1 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb-xinerama0 libxcb1 -y";
if (core.getInput("install-deps") == "true") {
yield exec.exec("sudo " + cmd0);
yield exec.exec("sudo " + cmd1);
Expand Down Expand Up @@ -132,6 +132,10 @@ function run() {
}
}
//set environment variables
// Weird naming scheme exception for qt 5.9
if (version == '5.9.0') {
version = '5.9';
}
let qtPath = dir + "/" + version;
qtPath = glob.sync(qtPath + '/**/*')[0];
if (setEnv == "true") {
Expand Down
19 changes: 19 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c04feed

Please sign in to comment.