diff options
| author | oldmud0 <3421260-oldmud0@users.noreply.gitlab.com> | 2019-02-06 22:42:47 +0000 |
|---|---|---|
| committer | oldmud0 <3421260-oldmud0@users.noreply.gitlab.com> | 2019-02-06 22:42:47 +0000 |
| commit | 72dbc4f3ae160d273649f6596ee12221f47a4003 (patch) | |
| tree | 905d4e1f292b579836a68efc087fc916c59e159c | |
| parent | 8a5be72f913b75403387485e299ea306a81c24e9 (diff) | |
Use a locally-sourced image for Windows builds
| -rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b40d525e..198ceab1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,9 +5,10 @@ cache: before_script: - echo Current working directory is $(pwd) + - echo Current user is $(whoami) - qmake --version - gcc --version - - apt-get install --no-install-recommends -y upx zip unzip + - sudo apt-get install --no-install-recommends -y upx zip unzip - cd scripts - ./configure_ubuntu.sh - cd .. @@ -27,7 +28,7 @@ build linux x86_64: - bin/ build windows i686: - image: fffaraz/qt + image: ${CI_REGISTRY_IMAGE}/builder-windows-i686 stage: build tags: - docker |
