diff options
author | Eric Engestrom <[email protected]> | 2019-03-08 12:47:23 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-05-02 15:10:59 +0000 |
commit | 7c15a87aeab64692cdce7abf471c30869145f449 (patch) | |
tree | aa16158e216f5847aa1787e0f7c5a46b6a0bebad /.gitlab-ci.yml | |
parent | a34ee4dec780e01fb33780893da0cb95af2beb13 (diff) |
gitlab-ci: add scons windows build using mingw
Signed-off-by: Eric Engestrom <[email protected]>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f336cbb0b9a..7878435130b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,7 +17,7 @@ # at "01" unless you have multiple updates on the same day :) variables: UPSTREAM_REPO: mesa/mesa - DEBIAN_TAG: "2019-04-16" + DEBIAN_TAG: "2019-05-01" DEBIAN_VERSION: stretch-slim DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG" @@ -327,3 +327,9 @@ scons-swr: SCONS_TARGET: "swr=1" SCONS_CHECK_COMMAND: "true" LLVM_VERSION: "6.0" + +scons-win64: + extends: .scons-build + variables: + SCONS_TARGET: platform=windows machine=x86_64 + SCONS_CHECK_COMMAND: "true" |