mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-19 20:16:30 +02:00
Merge pull request #1887 from alicevision/docker/renameVar
[docker] rename var
This commit is contained in:
commit
d21b70f45d
3 changed files with 5 additions and 5 deletions
|
@ -12,7 +12,7 @@ ENV MESHROOM_DEV=/opt/Meshroom \
|
||||||
MESHROOM_BUNDLE=/opt/Meshroom_bundle \
|
MESHROOM_BUNDLE=/opt/Meshroom_bundle \
|
||||||
QT_DIR=/opt/Qt5.14.1/5.14.1/gcc_64 \
|
QT_DIR=/opt/Qt5.14.1/5.14.1/gcc_64 \
|
||||||
QT_CI_LOGIN=alicevisionjunk@gmail.com \
|
QT_CI_LOGIN=alicevisionjunk@gmail.com \
|
||||||
QT_CI_PASSWORD=azerty1.
|
QT_CI_P=azerty1.
|
||||||
|
|
||||||
WORKDIR ${MESHROOM_BUNDLE}
|
WORKDIR ${MESHROOM_BUNDLE}
|
||||||
RUN mv "${AV_BUNDLE}" "${MESHROOM_BUNDLE}/aliceVision" && \
|
RUN mv "${AV_BUNDLE}" "${MESHROOM_BUNDLE}/aliceVision" && \
|
||||||
|
|
|
@ -11,7 +11,7 @@ ENV MESHROOM_DEV=/opt/Meshroom \
|
||||||
MESHROOM_BUILD=/tmp/Meshroom_build \
|
MESHROOM_BUILD=/tmp/Meshroom_build \
|
||||||
QT_DIR=/opt/Qt5.14.1/5.14.1/gcc_64 \
|
QT_DIR=/opt/Qt5.14.1/5.14.1/gcc_64 \
|
||||||
QT_CI_LOGIN=alicevisionjunk@gmail.com \
|
QT_CI_LOGIN=alicevisionjunk@gmail.com \
|
||||||
QT_CI_PASSWORD=azerty1.
|
QT_CI_P=azerty1.
|
||||||
|
|
||||||
# Workaround for qmlAlembic/qtAliceVision builds: fuse lib/lib64 folders
|
# Workaround for qmlAlembic/qtAliceVision builds: fuse lib/lib64 folders
|
||||||
#RUN ln -s ${AV_INSTALL}/lib ${AV_INSTALL}/lib64
|
#RUN ln -s ${AV_INSTALL}/lib ${AV_INSTALL}/lib64
|
||||||
|
|
|
@ -13,14 +13,14 @@ Controller.prototype.WelcomePageCallback = function() {
|
||||||
Controller.prototype.CredentialsPageCallback = function() {
|
Controller.prototype.CredentialsPageCallback = function() {
|
||||||
console.log("Credentials Page");
|
console.log("Credentials Page");
|
||||||
var login = installer.environmentVariable("QT_CI_LOGIN");
|
var login = installer.environmentVariable("QT_CI_LOGIN");
|
||||||
var password = installer.environmentVariable("QT_CI_PASSWORD");
|
var p = installer.environmentVariable("QT_CI_P");
|
||||||
if( login === "" || password === "" ) {
|
if( login === "" || p === "" ) {
|
||||||
console.log("No credentials provided - could stuck here forever");
|
console.log("No credentials provided - could stuck here forever");
|
||||||
gui.clickButton(buttons.CommitButton);
|
gui.clickButton(buttons.CommitButton);
|
||||||
}
|
}
|
||||||
var widget = gui.currentPageWidget();
|
var widget = gui.currentPageWidget();
|
||||||
widget.loginWidget.EmailLineEdit.setText(login);
|
widget.loginWidget.EmailLineEdit.setText(login);
|
||||||
widget.loginWidget.PasswordLineEdit.setText(password);
|
widget.loginWidget.PasswordLineEdit.setText(p);
|
||||||
gui.clickButton(buttons.CommitButton);
|
gui.clickButton(buttons.CommitButton);
|
||||||
}
|
}
|
||||||
Controller.prototype.ComponentSelectionPageCallback = function() {
|
Controller.prototype.ComponentSelectionPageCallback = function() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue