Eric Engestrom | 329f5cd | 2019-01-20 11:21:45 +0000 | [diff] [blame] | 1 | variables: |
Eric Anholt | af7dca3 | 2020-03-06 13:23:20 -0800 | [diff] [blame] | 2 | FDO_UPSTREAM_REPO: mesa/mesa |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 3 | CI_PRE_CLONE_SCRIPT: |- |
| 4 | set -o xtrace |
| 5 | /usr/bin/wget -q -O- ${CI_PROJECT_URL}/-/raw/${CI_COMMIT_SHA}/.gitlab-ci/download-git-cache.sh | sh - |
| 6 | set +o xtrace |
Benjamin Tissoires | 7f8a9a1 | 2019-04-02 09:24:00 +0200 | [diff] [blame] | 7 | |
| 8 | include: |
Eric Anholt | af7dca3 | 2020-03-06 13:23:20 -0800 | [diff] [blame] | 9 | - project: 'freedesktop/ci-templates' |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 10 | ref: &ci-templates-sha 52dd4a94044449c8481d18dcdc221a3c636366d2 |
Michel Dänzer | d00b1c4 | 2019-04-02 16:56:54 +0200 | [diff] [blame] | 11 | file: '/templates/debian.yml' |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 12 | - project: 'freedesktop/ci-templates' |
| 13 | ref: *ci-templates-sha |
| 14 | file: '/templates/alpine.yml' |
Dylan Baker | 19851c9 | 2019-10-23 14:36:19 -0700 | [diff] [blame] | 15 | - local: '.gitlab-ci/lava-gitlab-ci.yml' |
Pierre-Eric Pelloux-Prayer | 2a9d6fd | 2019-10-30 20:39:08 +0100 | [diff] [blame] | 16 | - local: '.gitlab-ci/test-source-dep.yml' |
Tomeu Vizoso | 7b01f72 | 2019-09-18 16:03:36 +0200 | [diff] [blame] | 17 | |
Eric Engestrom | 329f5cd | 2019-01-20 11:21:45 +0000 | [diff] [blame] | 18 | stages: |
Erik Faye-Lund | 196ac4c | 2020-06-22 11:10:40 +0200 | [diff] [blame] | 19 | - container+docs |
Michel Dänzer | c2366f0 | 2020-05-16 17:17:23 +0200 | [diff] [blame] | 20 | - container-2 |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 21 | - git-archive |
Michel Dänzer | 3cdc0d5 | 2020-07-01 17:37:49 +0200 | [diff] [blame] | 22 | - deploy |
Michel Dänzer | cc9493f | 2020-02-27 18:27:56 +0100 | [diff] [blame] | 23 | - meson-x86_64 |
| 24 | - scons |
| 25 | - meson-misc |
| 26 | - llvmpipe |
| 27 | - softpipe |
| 28 | - freedreno |
| 29 | - panfrost |
Samuel Pitoiset | 48e9203 | 2020-03-06 08:39:25 +0100 | [diff] [blame] | 30 | - radv |
| 31 | - lima |
Tomeu Vizoso | ad3ef6d | 2020-04-01 09:17:25 +0200 | [diff] [blame] | 32 | - virgl |
Tomeu Vizoso | 6c8b921 | 2020-07-03 10:04:20 +0200 | [diff] [blame] | 33 | - radeonsi |
Michel Dänzer | 8775b74 | 2020-01-13 09:45:57 +0100 | [diff] [blame] | 34 | - success |
Eric Engestrom | 329f5cd | 2019-01-20 11:21:45 +0000 | [diff] [blame] | 35 | |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 36 | # Generic rule to not run the job during scheduled pipelines |
| 37 | # ---------------------------------------------------------- |
| 38 | .scheduled_pipelines-rules: |
| 39 | rules: &ignore_scheduled_pipelines |
| 40 | if: '$CI_PIPELINE_SOURCE == "schedule"' |
| 41 | when: never |
| 42 | |
Erik Faye-Lund | 8774707 | 2020-06-22 11:10:29 +0200 | [diff] [blame] | 43 | .docs-base: |
Michel Dänzer | 8e2cb8e | 2020-06-22 11:21:06 +0200 | [diff] [blame] | 44 | extends: .ci-run-policy |
Erik Faye-Lund | 064fe5f | 2019-05-27 17:12:10 +0200 | [diff] [blame] | 45 | image: alpine |
Erik Faye-Lund | 064fe5f | 2019-05-27 17:12:10 +0200 | [diff] [blame] | 46 | script: |
Erik Faye-Lund | cb11900 | 2020-07-02 13:09:36 +0200 | [diff] [blame] | 47 | - apk --no-cache add py3-pip graphviz |
Erik Faye-Lund | 064fe5f | 2019-05-27 17:12:10 +0200 | [diff] [blame] | 48 | - pip3 install sphinx sphinx_rtd_theme |
| 49 | - sphinx-build -b html docs public |
Erik Faye-Lund | 8774707 | 2020-06-22 11:10:29 +0200 | [diff] [blame] | 50 | |
| 51 | pages: |
| 52 | extends: .docs-base |
Erik Faye-Lund | 196ac4c | 2020-06-22 11:10:40 +0200 | [diff] [blame] | 53 | stage: deploy |
Erik Faye-Lund | 064fe5f | 2019-05-27 17:12:10 +0200 | [diff] [blame] | 54 | artifacts: |
| 55 | paths: |
| 56 | - public |
Michel Dänzer | 8e2cb8e | 2020-06-22 11:21:06 +0200 | [diff] [blame] | 57 | rules: |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 58 | - *ignore_scheduled_pipelines |
Michel Dänzer | 8e2cb8e | 2020-06-22 11:21:06 +0200 | [diff] [blame] | 59 | - if: '$CI_PROJECT_NAMESPACE == "mesa" && $CI_COMMIT_REF_NAME == "master"' |
| 60 | changes: &docs-or-ci |
| 61 | - docs/**/* |
| 62 | - .gitlab-ci.yml |
Michel Dänzer | fc41ec1 | 2020-07-01 17:41:06 +0200 | [diff] [blame] | 63 | when: always |
Michel Dänzer | 8e2cb8e | 2020-06-22 11:21:06 +0200 | [diff] [blame] | 64 | # Other cases default to never |
Eric Engestrom | 329f5cd | 2019-01-20 11:21:45 +0000 | [diff] [blame] | 65 | |
Erik Faye-Lund | 8774707 | 2020-06-22 11:10:29 +0200 | [diff] [blame] | 66 | test-docs: |
| 67 | extends: .docs-base |
Michel Dänzer | d9693c6 | 2020-07-21 16:13:37 +0200 | [diff] [blame] | 68 | # Cancel job if a newer commit is pushed to the same branch |
| 69 | interruptible: true |
Erik Faye-Lund | 196ac4c | 2020-06-22 11:10:40 +0200 | [diff] [blame] | 70 | stage: container+docs |
Michel Dänzer | 1c612e8 | 2020-06-22 11:13:05 +0200 | [diff] [blame] | 71 | rules: |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 72 | - *ignore_scheduled_pipelines |
Michel Dänzer | 3f86564 | 2020-07-15 10:59:54 +0200 | [diff] [blame] | 73 | - if: '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME' |
Michel Dänzer | 8e2cb8e | 2020-06-22 11:21:06 +0200 | [diff] [blame] | 74 | changes: *docs-or-ci |
Michel Dänzer | 1c612e8 | 2020-06-22 11:13:05 +0200 | [diff] [blame] | 75 | when: on_success |
Michel Dänzer | f13f32f | 2020-08-31 18:46:37 +0200 | [diff] [blame] | 76 | - if: '$GITLAB_USER_LOGIN != "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME && $CI_PROJECT_PATH == "mesa/mesa"' |
| 77 | changes: *docs-or-ci |
| 78 | when: on_success |
Michel Dänzer | 1c612e8 | 2020-06-22 11:13:05 +0200 | [diff] [blame] | 79 | - changes: *docs-or-ci |
| 80 | when: manual |
| 81 | # Other cases default to never |
Erik Faye-Lund | 8774707 | 2020-06-22 11:10:29 +0200 | [diff] [blame] | 82 | |
Eric Engestrom | 7f5d9c2 | 2019-02-22 15:52:08 +0000 | [diff] [blame] | 83 | # When to automatically run the CI |
Michel Dänzer | e426f40 | 2019-09-06 17:35:52 +0200 | [diff] [blame] | 84 | .ci-run-policy: |
Michel Dänzer | 41797a1 | 2019-09-26 09:27:27 +0200 | [diff] [blame] | 85 | rules: |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 86 | - *ignore_scheduled_pipelines |
Michel Dänzer | 42fe600 | 2020-04-03 12:50:11 +0200 | [diff] [blame] | 87 | # If any files affecting the pipeline are changed, build/test jobs run |
| 88 | # automatically once all dependency jobs have passed |
| 89 | - changes: &all_paths |
Michel Dänzer | 8775b74 | 2020-01-13 09:45:57 +0100 | [diff] [blame] | 90 | - VERSION |
Eric Engestrom | 576bff5 | 2020-05-14 22:51:38 +0200 | [diff] [blame] | 91 | - bin/git_sha1_gen.py |
| 92 | - bin/install_megadrivers.py |
| 93 | - bin/meson_get_version.py |
| 94 | - bin/symbols-check.py |
Michel Dänzer | 8775b74 | 2020-01-13 09:45:57 +0100 | [diff] [blame] | 95 | # GitLab CI |
| 96 | - .gitlab-ci.yml |
| 97 | - .gitlab-ci/**/* |
| 98 | # Meson |
| 99 | - meson* |
| 100 | - build-support/**/* |
| 101 | - subprojects/**/* |
| 102 | # SCons |
| 103 | - SConstruct |
| 104 | - scons/**/* |
| 105 | - common.py |
| 106 | # Source code |
| 107 | - include/**/* |
| 108 | - src/**/* |
| 109 | when: on_success |
Michel Dänzer | 42fe600 | 2020-04-03 12:50:11 +0200 | [diff] [blame] | 110 | # Otherwise, build/test jobs won't run |
Michel Dänzer | 8775b74 | 2020-01-13 09:45:57 +0100 | [diff] [blame] | 111 | - when: never |
Michel Dänzer | 6140ed3 | 2019-03-26 18:39:41 +0100 | [diff] [blame] | 112 | retry: |
| 113 | max: 2 |
| 114 | when: |
| 115 | - runner_system_failure |
Eric Engestrom | 7f5d9c2 | 2019-02-22 15:52:08 +0000 | [diff] [blame] | 116 | |
Michel Dänzer | 8775b74 | 2020-01-13 09:45:57 +0100 | [diff] [blame] | 117 | success: |
| 118 | stage: success |
| 119 | image: debian:stable-slim |
Michel Dänzer | 6cba468 | 2020-06-22 11:16:17 +0200 | [diff] [blame] | 120 | rules: |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 121 | - *ignore_scheduled_pipelines |
Michel Dänzer | 0308e63 | 2020-08-31 18:49:42 +0200 | [diff] [blame] | 122 | - if: '$CI_PROJECT_NAMESPACE == "mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME' |
Michel Dänzer | 6cba468 | 2020-06-22 11:16:17 +0200 | [diff] [blame] | 123 | when: never |
| 124 | - if: '$GITLAB_USER_LOGIN == "marge-bot"' |
| 125 | changes: *docs-or-ci |
| 126 | when: never |
| 127 | - changes: *all_paths |
| 128 | when: never |
Michel Dänzer | a6c4db9 | 2020-08-28 17:08:57 +0200 | [diff] [blame] | 129 | - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME' |
| 130 | when: on_success |
Michel Dänzer | 2dd0cc6 | 2020-01-20 18:34:34 +0100 | [diff] [blame] | 131 | variables: |
| 132 | GIT_STRATEGY: none |
Michel Dänzer | 8775b74 | 2020-01-13 09:45:57 +0100 | [diff] [blame] | 133 | script: |
| 134 | - echo "Dummy job to make sure every merge request pipeline runs at least one job" |
| 135 | |
| 136 | |
Michel Dänzer | e426f40 | 2019-09-06 17:35:52 +0200 | [diff] [blame] | 137 | .ci-deqp-artifacts: |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 138 | artifacts: |
Michel Dänzer | 0103f02 | 2020-03-06 12:35:17 +0100 | [diff] [blame] | 139 | name: "mesa_${CI_JOB_NAME}" |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 140 | when: always |
| 141 | untracked: false |
| 142 | paths: |
| 143 | # Watch out! Artifacts are relative to the build dir. |
| 144 | # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521 |
| 145 | - artifacts |
Eric Engestrom | 7f5d9c2 | 2019-02-22 15:52:08 +0000 | [diff] [blame] | 146 | |
Tomeu Vizoso | 22d9764 | 2019-12-17 11:50:14 +0100 | [diff] [blame] | 147 | # Build the CI docker images. |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 148 | # |
Eric Anholt | af7dca3 | 2020-03-06 13:23:20 -0800 | [diff] [blame] | 149 | # FDO_DISTRIBUTION_TAG is the tag of the docker image used by later stage jobs. If the |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 150 | # image doesn't exist yet, the container stage job generates it. |
| 151 | # |
| 152 | # In order to generate a new image, one should generally change the tag. |
| 153 | # While removing the image from the registry would also work, that's not |
| 154 | # recommended except for ephemeral images during development: Replacing |
| 155 | # an image after a significant amount of time might pull in newer |
| 156 | # versions of gcc/clang or other packages, which might break the build |
| 157 | # with older commits using the same tag. |
| 158 | # |
| 159 | # After merging a change resulting in generating a new image to the |
| 160 | # main repository, it's recommended to remove the image from the source |
| 161 | # repository's container registry, so that the image from the main |
| 162 | # repository's registry will be used there as well. |
Michel Dänzer | 8a19992 | 2019-09-06 17:04:47 +0200 | [diff] [blame] | 163 | |
Eric Engestrom | 81b98e9 | 2019-10-14 23:04:14 +0100 | [diff] [blame] | 164 | .container: |
Erik Faye-Lund | 196ac4c | 2020-06-22 11:10:40 +0200 | [diff] [blame] | 165 | stage: container+docs |
Eric Engestrom | 81b98e9 | 2019-10-14 23:04:14 +0100 | [diff] [blame] | 166 | extends: |
| 167 | - .ci-run-policy |
Michel Dänzer | 42fe600 | 2020-04-03 12:50:11 +0200 | [diff] [blame] | 168 | rules: |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 169 | - *ignore_scheduled_pipelines |
Michel Dänzer | 549b4a3 | 2020-06-29 11:33:13 +0200 | [diff] [blame] | 170 | # Run pipeline by default in the main project if any CI pipeline |
| 171 | # configuration files were changed, to ensure docker images are up to date |
Michel Dänzer | 45793c0 | 2020-08-27 09:36:22 +0200 | [diff] [blame] | 172 | - if: '$CI_PROJECT_PATH == "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME' |
Michel Dänzer | 42fe600 | 2020-04-03 12:50:11 +0200 | [diff] [blame] | 173 | changes: |
Michel Dänzer | 549b4a3 | 2020-06-29 11:33:13 +0200 | [diff] [blame] | 174 | - .gitlab-ci.yml |
| 175 | - .gitlab-ci/**/* |
| 176 | when: on_success |
| 177 | # Run pipeline by default if it was triggered by Marge Bot, is for a |
| 178 | # merge request, and any files affecting the pipeline were changed |
Michel Dänzer | cbdb87c | 2020-07-14 11:12:19 +0200 | [diff] [blame] | 179 | - if: '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME' |
Michel Dänzer | 549b4a3 | 2020-06-29 11:33:13 +0200 | [diff] [blame] | 180 | changes: |
Michel Dänzer | 42fe600 | 2020-04-03 12:50:11 +0200 | [diff] [blame] | 181 | *all_paths |
| 182 | when: on_success |
Michel Dänzer | 549b4a3 | 2020-06-29 11:33:13 +0200 | [diff] [blame] | 183 | # Run pipeline by default in the main project if it was not triggered by |
| 184 | # Marge Bot, and any files affecting the pipeline were changed |
Michel Dänzer | 45793c0 | 2020-08-27 09:36:22 +0200 | [diff] [blame] | 185 | - if: '$GITLAB_USER_LOGIN != "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME && $CI_PROJECT_PATH == "mesa/mesa"' |
Michel Dänzer | 549b4a3 | 2020-06-29 11:33:13 +0200 | [diff] [blame] | 186 | changes: |
| 187 | *all_paths |
| 188 | when: on_success |
| 189 | # Allow triggering jobs manually in other cases if any files affecting the |
| 190 | # pipeline were changed |
Michel Dänzer | 4176dfa | 2020-04-03 11:46:12 +0200 | [diff] [blame] | 191 | - changes: |
Michel Dänzer | 42fe600 | 2020-04-03 12:50:11 +0200 | [diff] [blame] | 192 | *all_paths |
| 193 | when: manual |
| 194 | # Otherwise, container jobs won't run |
| 195 | - when: never |
Eric Engestrom | 81b98e9 | 2019-10-14 23:04:14 +0100 | [diff] [blame] | 196 | variables: |
Eric Anholt | af7dca3 | 2020-03-06 13:23:20 -0800 | [diff] [blame] | 197 | FDO_DISTRIBUTION_VERSION: buster-slim |
Michel Dänzer | fcd3377 | 2020-03-23 18:16:07 +0100 | [diff] [blame] | 198 | FDO_REPO_SUFFIX: "debian/$CI_JOB_NAME" |
Eric Anholt | fd24a95 | 2020-06-26 10:59:41 -0700 | [diff] [blame] | 199 | FDO_DISTRIBUTION_EXEC: 'env FDO_CI_CONCURRENT=${FDO_CI_CONCURRENT} bash .gitlab-ci/container/${CI_JOB_NAME}.sh' |
Eric Engestrom | 81b98e9 | 2019-10-14 23:04:14 +0100 | [diff] [blame] | 200 | # no need to pull the whole repo to build the container image |
| 201 | GIT_STRATEGY: none |
| 202 | |
Michel Dänzer | a85da8e | 2020-05-30 15:53:41 +0200 | [diff] [blame] | 203 | # Debian 10 based x86 build image base |
| 204 | x86_build-base: |
Michel Dänzer | e426f40 | 2019-09-06 17:35:52 +0200 | [diff] [blame] | 205 | extends: |
Michel Dänzer | fcd3377 | 2020-03-23 18:16:07 +0100 | [diff] [blame] | 206 | - .fdo.container-build@debian |
Eric Engestrom | 81b98e9 | 2019-10-14 23:04:14 +0100 | [diff] [blame] | 207 | - .container |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 208 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 209 | FDO_DISTRIBUTION_TAG: &x86_build-base "2020-08-13-gold" |
Michel Dänzer | a85da8e | 2020-05-30 15:53:41 +0200 | [diff] [blame] | 210 | |
| 211 | .use-x86_build-base: |
| 212 | extends: |
| 213 | - x86_build-base |
| 214 | - .ci-run-policy |
| 215 | stage: container-2 |
| 216 | variables: |
| 217 | BASE_TAG: *x86_build-base |
| 218 | FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG" |
| 219 | needs: |
| 220 | - x86_build-base |
| 221 | |
| 222 | # Debian 10 based x86 main build image |
| 223 | x86_build: |
| 224 | extends: |
| 225 | - .use-x86_build-base |
| 226 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 227 | FDO_DISTRIBUTION_TAG: &x86_build "2020-08-13-gold" |
Eric Engestrom | 46d23c0 | 2019-01-20 11:26:53 +0000 | [diff] [blame] | 228 | |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 229 | .use-x86_build: |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 230 | variables: |
| 231 | TAG: *x86_build |
| 232 | image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG" |
Michel Dänzer | eb86cba | 2019-10-10 15:27:17 +0200 | [diff] [blame] | 233 | needs: |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 234 | - x86_build |
Michel Dänzer | eb86cba | 2019-10-10 15:27:17 +0200 | [diff] [blame] | 235 | |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 236 | # Debian 10 based i386 cross-build image |
| 237 | i386_build: |
| 238 | extends: |
| 239 | - .use-x86_build-base |
| 240 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 241 | FDO_DISTRIBUTION_TAG: &i386_build "2020-08-13-gold" |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 242 | |
| 243 | .use-i386_build: |
| 244 | variables: |
| 245 | TAG: *i386_build |
| 246 | image: "$CI_REGISTRY_IMAGE/debian/i386_build:$TAG" |
| 247 | needs: |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 248 | - i386_build |
| 249 | |
| 250 | # Debian 10 based ppc64el cross-build image |
| 251 | ppc64el_build: |
| 252 | extends: |
| 253 | - .use-x86_build-base |
| 254 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 255 | FDO_DISTRIBUTION_TAG: &ppc64el_build "2020-08-13-gold" |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 256 | |
| 257 | .use-ppc64el_build: |
| 258 | variables: |
| 259 | TAG: *ppc64el_build |
| 260 | image: "$CI_REGISTRY_IMAGE/debian/ppc64el_build:$TAG" |
| 261 | needs: |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 262 | - ppc64el_build |
| 263 | |
| 264 | # Debian 10 based s390x cross-build image |
| 265 | s390x_build: |
| 266 | extends: |
| 267 | - .use-x86_build-base |
| 268 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 269 | FDO_DISTRIBUTION_TAG: &s390x_build "2020-08-13-gold" |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 270 | |
| 271 | .use-s390x_build: |
| 272 | variables: |
| 273 | TAG: *s390x_build |
| 274 | image: "$CI_REGISTRY_IMAGE/debian/s390x_build:$TAG" |
| 275 | needs: |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 276 | - s390x_build |
| 277 | |
Michel Dänzer | c2366f0 | 2020-05-16 17:17:23 +0200 | [diff] [blame] | 278 | # Debian 10 based x86 test image base |
| 279 | x86_test-base: |
Michel Dänzer | a85da8e | 2020-05-30 15:53:41 +0200 | [diff] [blame] | 280 | extends: x86_build-base |
Michel Dänzer | aebf43d | 2019-11-05 18:52:24 +0100 | [diff] [blame] | 281 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 282 | FDO_DISTRIBUTION_TAG: &x86_test-base "2020-08-13-gold" |
Michel Dänzer | c2366f0 | 2020-05-16 17:17:23 +0200 | [diff] [blame] | 283 | |
| 284 | .use-x86_test-base: |
| 285 | extends: |
Michel Dänzer | a85da8e | 2020-05-30 15:53:41 +0200 | [diff] [blame] | 286 | - x86_build-base |
Michel Dänzer | c2366f0 | 2020-05-16 17:17:23 +0200 | [diff] [blame] | 287 | - .ci-run-policy |
| 288 | stage: container-2 |
| 289 | variables: |
| 290 | BASE_TAG: *x86_test-base |
| 291 | FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_test-base:$BASE_TAG" |
| 292 | needs: |
| 293 | - x86_test-base |
| 294 | |
| 295 | # Debian 10 based x86 test image for GL |
| 296 | x86_test-gl: |
| 297 | extends: .use-x86_test-base |
| 298 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 299 | FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-08-24-gold" |
Michel Dänzer | aebf43d | 2019-11-05 18:52:24 +0100 | [diff] [blame] | 300 | |
Samuel Pitoiset | f2a594f | 2019-11-18 09:23:18 +0100 | [diff] [blame] | 301 | # Debian 10 based x86 test image for VK |
| 302 | x86_test-vk: |
Michel Dänzer | c2366f0 | 2020-05-16 17:17:23 +0200 | [diff] [blame] | 303 | extends: .use-x86_test-base |
Samuel Pitoiset | f2a594f | 2019-11-18 09:23:18 +0100 | [diff] [blame] | 304 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 305 | FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-08-13-gold" |
Samuel Pitoiset | f2a594f | 2019-11-18 09:23:18 +0100 | [diff] [blame] | 306 | |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 307 | # Debian 9 based x86 build image (old LLVM) |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 308 | x86_build_old: |
Michel Dänzer | a85da8e | 2020-05-30 15:53:41 +0200 | [diff] [blame] | 309 | extends: x86_build-base |
Michel Dänzer | 8a19992 | 2019-09-06 17:04:47 +0200 | [diff] [blame] | 310 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 311 | FDO_DISTRIBUTION_TAG: &x86_build_old "2020-08-13-gold" |
Eric Anholt | af7dca3 | 2020-03-06 13:23:20 -0800 | [diff] [blame] | 312 | FDO_DISTRIBUTION_VERSION: stretch-slim |
Michel Dänzer | 8a19992 | 2019-09-06 17:04:47 +0200 | [diff] [blame] | 313 | |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 314 | .use-x86_build_old: |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 315 | variables: |
| 316 | TAG: *x86_build_old |
| 317 | image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG" |
Michel Dänzer | 88319f2 | 2019-09-18 16:17:01 +0200 | [diff] [blame] | 318 | needs: |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 319 | - x86_build_old |
Michel Dänzer | 88319f2 | 2019-09-18 16:17:01 +0200 | [diff] [blame] | 320 | |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 321 | # Debian 10 based ARM build image |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 322 | arm_build: |
Michel Dänzer | e426f40 | 2019-09-06 17:35:52 +0200 | [diff] [blame] | 323 | extends: |
Michel Dänzer | fcd3377 | 2020-03-23 18:16:07 +0100 | [diff] [blame] | 324 | - .fdo.container-build@debian@arm64v8 |
Eric Engestrom | 81b98e9 | 2019-10-14 23:04:14 +0100 | [diff] [blame] | 325 | - .container |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 326 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 327 | FDO_DISTRIBUTION_TAG: &arm_build "2020-08-13-gold" |
Eric Engestrom | 46d23c0 | 2019-01-20 11:26:53 +0000 | [diff] [blame] | 328 | |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 329 | .use-arm_build: |
Michel Dänzer | b4d3ae2 | 2019-11-04 09:54:09 +0100 | [diff] [blame] | 330 | variables: |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 331 | TAG: *arm_build |
| 332 | image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG" |
| 333 | needs: |
| 334 | - arm_build |
| 335 | |
Christian Gmeiner | 408b36a | 2020-06-07 22:03:34 +0200 | [diff] [blame] | 336 | # Debian 10 based x86 baremetal image base |
| 337 | arm_test-base: |
| 338 | extends: |
| 339 | - .fdo.container-build@debian |
| 340 | - .container |
| 341 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 342 | FDO_DISTRIBUTION_TAG: &arm_test-base "2020-08-13-gold" |
Christian Gmeiner | 408b36a | 2020-06-07 22:03:34 +0200 | [diff] [blame] | 343 | |
| 344 | .use-arm_test-base: |
| 345 | extends: |
| 346 | - arm_test-base |
| 347 | - .ci-run-policy |
| 348 | stage: container-2 |
| 349 | variables: |
| 350 | BASE_TAG: *arm_test-base |
| 351 | FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/arm_test-base:$BASE_TAG" |
| 352 | needs: |
| 353 | - arm_test-base |
| 354 | |
Christian Gmeiner | 839bc2d | 2020-06-07 23:19:50 +0200 | [diff] [blame] | 355 | # x86 image with ARM64 rootfs for baremetal testing. |
| 356 | arm64_test: |
Christian Gmeiner | 408b36a | 2020-06-07 22:03:34 +0200 | [diff] [blame] | 357 | extends: |
| 358 | - .use-arm_test-base |
Eric Anholt | 68b3b5b | 2020-05-13 11:08:08 -0700 | [diff] [blame] | 359 | variables: |
Eric Anholt | d3b652f | 2020-08-13 14:21:50 -0700 | [diff] [blame] | 360 | FDO_DISTRIBUTION_TAG: &arm64_test "2020-08-24-gold" |
Eric Anholt | 68b3b5b | 2020-05-13 11:08:08 -0700 | [diff] [blame] | 361 | |
Christian Gmeiner | 839bc2d | 2020-06-07 23:19:50 +0200 | [diff] [blame] | 362 | .use-arm64_test: |
Eric Anholt | 68b3b5b | 2020-05-13 11:08:08 -0700 | [diff] [blame] | 363 | variables: |
Christian Gmeiner | 839bc2d | 2020-06-07 23:19:50 +0200 | [diff] [blame] | 364 | TAG: *arm64_test |
| 365 | image: "$CI_REGISTRY_IMAGE/debian/arm64_test:$TAG" |
Eric Anholt | 68b3b5b | 2020-05-13 11:08:08 -0700 | [diff] [blame] | 366 | needs: |
Christian Gmeiner | 839bc2d | 2020-06-07 23:19:50 +0200 | [diff] [blame] | 367 | - arm64_test |
Eric Anholt | 68b3b5b | 2020-05-13 11:08:08 -0700 | [diff] [blame] | 368 | |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 369 | # Native Windows docker builds |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 370 | # |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 371 | # Unlike the above Linux-based builds - including MinGW/SCons builds which |
| 372 | # cross-compile for Windows - which use the freedesktop ci-templates, we |
| 373 | # cannot use the same scheme here. As Windows lacks support for |
| 374 | # Docker-in-Docker, and Podman does not run natively on Windows, we have |
| 375 | # to open-code much of the same ourselves. |
| 376 | # |
| 377 | # This is achieved by first running in a native Windows shell instance |
| 378 | # (host PowerShell) in the container stage to build and push the image, |
| 379 | # then in the build stage by executing inside Docker. |
| 380 | |
| 381 | .windows-docker-vs2019: |
| 382 | variables: |
Daniel Stone | 0f46a31 | 2020-05-05 15:49:22 +0100 | [diff] [blame] | 383 | WINDOWS_TAG: "2020-05-05-llvm" |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 384 | WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG" |
| 385 | WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG" |
| 386 | |
Daniel Stone | b8f2d71 | 2020-08-28 19:08:39 +0100 | [diff] [blame] | 387 | .windows_build_vs2019: |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 388 | extends: |
| 389 | - .container |
| 390 | - .windows-docker-vs2019 |
Erik Faye-Lund | 196ac4c | 2020-06-22 11:10:40 +0200 | [diff] [blame] | 391 | stage: container+docs |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 392 | variables: |
| 393 | GIT_STRATEGY: fetch # we do actually need the full repository though |
Daniel Stone | 0f46a31 | 2020-05-05 15:49:22 +0100 | [diff] [blame] | 394 | timeout: 4h # LLVM takes ages |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 395 | tags: |
| 396 | - windows |
| 397 | - shell |
| 398 | - "1809" |
Daniel Stone | 2db1d73 | 2020-03-30 10:16:18 +0100 | [diff] [blame] | 399 | - mesa |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 400 | script: |
| 401 | - .\.gitlab-ci\windows\mesa_container.ps1 $CI_REGISTRY $CI_REGISTRY_USER $CI_REGISTRY_PASSWORD $WINDOWS_IMAGE $WINDOWS_UPSTREAM_IMAGE |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 402 | |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 403 | .use-windows_build_vs2019: |
| 404 | extends: .windows-docker-vs2019 |
| 405 | image: "$WINDOWS_IMAGE" |
| 406 | needs: |
Daniel Stone | 7911346 | 2020-04-16 14:56:18 +0100 | [diff] [blame] | 407 | - windows_build_vs2019 |
Eric Engestrom | 81b98e9 | 2019-10-14 23:04:14 +0100 | [diff] [blame] | 408 | |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 409 | git_archive: |
| 410 | extends: .fdo.container-build@alpine |
| 411 | stage: container+docs |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 412 | rules: |
| 413 | - if: '$CI_PIPELINE_SOURCE == "schedule"' |
| 414 | when: always |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 415 | variables: |
| 416 | FDO_REPO_SUFFIX: &git-archive-suffix "alpine/git_archive" |
Benjamin Tissoires | 1639d3c | 2020-07-07 14:44:33 +0200 | [diff] [blame] | 417 | FDO_DISTRIBUTION_EXEC: 'pip3 install git+http://gitlab.freedesktop.org/freedesktop/ci-templates@6f5af7e5574509726c79109e3c147cee95e81366' |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 418 | # no need to pull the whole repo to build the container image |
| 419 | GIT_STRATEGY: none |
Benjamin Tissoires | 1639d3c | 2020-07-07 14:44:33 +0200 | [diff] [blame] | 420 | FDO_DISTRIBUTION_TAG: &git-archive-tag "2020-07-07" |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 421 | FDO_DISTRIBUTION_PACKAGES: git py3-pip |
| 422 | |
| 423 | |
| 424 | # Git archive |
| 425 | |
| 426 | make git archive: |
| 427 | stage: git-archive |
| 428 | extends: .fdo.suffixed-image@alpine |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 429 | rules: |
| 430 | - if: '$CI_PIPELINE_SOURCE == "schedule"' |
| 431 | when: on_success |
Benjamin Tissoires | 0b6e03b | 2020-06-11 17:16:28 +0200 | [diff] [blame] | 432 | # ensure we are running on packet |
| 433 | tags: |
| 434 | - packet.net |
| 435 | variables: |
| 436 | FDO_DISTRIBUTION_TAG: *git-archive-tag |
| 437 | FDO_REPO_SUFFIX: *git-archive-suffix |
| 438 | needs: |
| 439 | - git_archive |
| 440 | |
| 441 | script: |
| 442 | # compress the current folder |
| 443 | - tar -cvzf ../$CI_PROJECT_NAME.tar.gz . |
| 444 | |
| 445 | # login with the JWT token |
| 446 | - ci-fairy minio login $CI_JOB_JWT |
| 447 | - ci-fairy minio cp ../$CI_PROJECT_NAME.tar.gz minio://minio-packet.freedesktop.org/git-cache/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME/$CI_PROJECT_NAME.tar.gz |
| 448 | |
| 449 | |
Eric Engestrom | 46d23c0 | 2019-01-20 11:26:53 +0000 | [diff] [blame] | 450 | # BUILD |
| 451 | |
Dylan Baker | 06e4647 | 2019-10-23 14:21:31 -0700 | [diff] [blame] | 452 | # Shared between windows and Linux |
| 453 | .build-common: |
Eric Engestrom | aba78c2 | 2019-10-14 23:52:58 +0100 | [diff] [blame] | 454 | extends: .ci-run-policy |
Michel Dänzer | d9693c6 | 2020-07-21 16:13:37 +0200 | [diff] [blame] | 455 | # Cancel job if a newer commit is pushed to the same branch |
| 456 | interruptible: true |
Eric Engestrom | 46d23c0 | 2019-01-20 11:26:53 +0000 | [diff] [blame] | 457 | artifacts: |
Michel Dänzer | 0103f02 | 2020-03-06 12:35:17 +0100 | [diff] [blame] | 458 | name: "mesa_${CI_JOB_NAME}" |
Eric Anholt | dd3d0b2 | 2019-07-24 09:27:48 -0700 | [diff] [blame] | 459 | when: always |
| 460 | paths: |
| 461 | - _build/meson-logs/*.txt |
| 462 | # scons: |
Michel Dänzer | 5229f27 | 2019-07-26 12:20:41 +0200 | [diff] [blame] | 463 | - build/*/config.log |
Eric Anholt | f60defa | 2019-04-10 15:59:12 -0700 | [diff] [blame] | 464 | - shader-db |
Dylan Baker | 06e4647 | 2019-10-23 14:21:31 -0700 | [diff] [blame] | 465 | |
| 466 | # Just Linux |
| 467 | .build-linux: |
| 468 | extends: .build-common |
Michel Dänzer | e9de19f | 2019-04-04 18:01:27 +0200 | [diff] [blame] | 469 | variables: |
| 470 | CCACHE_COMPILERCHECK: "content" |
Michel Dänzer | 32618ee | 2019-11-20 09:11:35 +0100 | [diff] [blame] | 471 | CCACHE_COMPRESS: "true" |
| 472 | CCACHE_DIR: /cache/mesa/ccache |
Eric Engestrom | 23b485c | 2019-02-12 16:59:27 +0000 | [diff] [blame] | 473 | # Use ccache transparently, and print stats before/after |
| 474 | before_script: |
| 475 | - export PATH="/usr/lib/ccache:$PATH" |
| 476 | - export CCACHE_BASEDIR="$PWD" |
Michel Dänzer | 32618ee | 2019-11-20 09:11:35 +0100 | [diff] [blame] | 477 | - ccache --show-stats |
Eric Engestrom | 23b485c | 2019-02-12 16:59:27 +0000 | [diff] [blame] | 478 | after_script: |
Eric Engestrom | 23b485c | 2019-02-12 16:59:27 +0000 | [diff] [blame] | 479 | - ccache --show-stats |
Eric Engestrom | 46d23c0 | 2019-01-20 11:26:53 +0000 | [diff] [blame] | 480 | |
Dylan Baker | 19851c9 | 2019-10-23 14:36:19 -0700 | [diff] [blame] | 481 | .build-windows: |
| 482 | extends: .build-common |
| 483 | tags: |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 484 | - windows |
| 485 | - docker |
| 486 | - "1809" |
Daniel Stone | 9197fd5 | 2020-03-30 15:58:51 +0100 | [diff] [blame] | 487 | - mesa |
Dylan Baker | 19851c9 | 2019-10-23 14:36:19 -0700 | [diff] [blame] | 488 | cache: |
| 489 | key: ${CI_JOB_NAME} |
| 490 | paths: |
| 491 | - subprojects/packagecache |
| 492 | |
Eric Engestrom | 46d23c0 | 2019-01-20 11:26:53 +0000 | [diff] [blame] | 493 | .meson-build: |
Eric Engestrom | aba78c2 | 2019-10-14 23:52:58 +0100 | [diff] [blame] | 494 | extends: |
Dylan Baker | 06e4647 | 2019-10-23 14:21:31 -0700 | [diff] [blame] | 495 | - .build-linux |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 496 | - .use-x86_build |
Michel Dänzer | cc9493f | 2020-02-27 18:27:56 +0100 | [diff] [blame] | 497 | stage: meson-x86_64 |
Michel Dänzer | 5f0ff00 | 2019-12-13 11:02:16 +0100 | [diff] [blame] | 498 | variables: |
| 499 | LLVM_VERSION: 9 |
Eric Engestrom | 23b485c | 2019-02-12 16:59:27 +0000 | [diff] [blame] | 500 | script: |
Michel Dänzer | cc2b3a9 | 2019-05-03 10:49:43 +0200 | [diff] [blame] | 501 | - .gitlab-ci/meson-build.sh |
Eric Engestrom | 46d23c0 | 2019-01-20 11:26:53 +0000 | [diff] [blame] | 502 | |
Eric Engestrom | 06b245b | 2019-01-23 15:46:10 +0000 | [diff] [blame] | 503 | .scons-build: |
Eric Engestrom | aba78c2 | 2019-10-14 23:52:58 +0100 | [diff] [blame] | 504 | extends: |
Dylan Baker | 06e4647 | 2019-10-23 14:21:31 -0700 | [diff] [blame] | 505 | - .build-linux |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 506 | - .use-x86_build |
Michel Dänzer | cc9493f | 2020-02-27 18:27:56 +0100 | [diff] [blame] | 507 | stage: scons |
Eric Engestrom | 06b245b | 2019-01-23 15:46:10 +0000 | [diff] [blame] | 508 | script: |
Eric Anholt | fd24a95 | 2020-06-26 10:59:41 -0700 | [diff] [blame] | 509 | - env SCONSFLAGS="-j${FDO_CI_CONCURRENT:-4}" .gitlab-ci/scons-build.sh |
Eric Engestrom | 06b245b | 2019-01-23 15:46:10 +0000 | [diff] [blame] | 510 | |
Samuel Pitoiset | 66b5627 | 2019-11-19 12:23:41 +0100 | [diff] [blame] | 511 | meson-testing: |
Michel Dänzer | e426f40 | 2019-09-06 17:35:52 +0200 | [diff] [blame] | 512 | extends: |
| 513 | - .meson-build |
| 514 | - .ci-deqp-artifacts |
Michel Dänzer | 42f8d5a | 2019-08-28 12:01:02 +0200 | [diff] [blame] | 515 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 516 | UNWIND: "enabled" |
Michel Dänzer | 42f8d5a | 2019-08-28 12:01:02 +0200 | [diff] [blame] | 517 | DRI_LOADERS: > |
| 518 | -D glx=dri |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 519 | -D gbm=enabled |
| 520 | -D egl=enabled |
Eric Engestrom | e00adef | 2019-06-25 15:44:16 +0100 | [diff] [blame] | 521 | -D platforms=x11 |
Samuel Pitoiset | 66b5627 | 2019-11-19 12:23:41 +0100 | [diff] [blame] | 522 | GALLIUM_ST: > |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 523 | -D dri3=enabled |
Tomeu Vizoso | 6c8b921 | 2020-07-03 10:04:20 +0200 | [diff] [blame] | 524 | GALLIUM_DRIVERS: "swrast,virgl,radeonsi" |
Samuel Pitoiset | 40c6a56 | 2019-11-19 14:46:53 +0100 | [diff] [blame] | 525 | VULKAN_DRIVERS: amd |
Samuel Pitoiset | 66b5627 | 2019-11-19 12:23:41 +0100 | [diff] [blame] | 526 | BUILDTYPE: "debugoptimized" |
Eric Anholt | 3c7c021 | 2019-12-16 21:23:02 -0800 | [diff] [blame] | 527 | EXTRA_OPTION: > |
| 528 | -D werror=true |
Tomeu Vizoso | 6c8b921 | 2020-07-03 10:04:20 +0200 | [diff] [blame] | 529 | UPLOAD_FOR_LAVA: 1 |
| 530 | DEBIAN_ARCH: amd64 |
Samuel Pitoiset | 66b5627 | 2019-11-19 12:23:41 +0100 | [diff] [blame] | 531 | script: |
| 532 | - .gitlab-ci/meson-build.sh |
| 533 | - .gitlab-ci/prepare-artifacts.sh |
| 534 | |
Michel Dänzer | c56f091 | 2020-03-12 12:29:40 +0100 | [diff] [blame] | 535 | meson-gallium: |
Samuel Pitoiset | 66b5627 | 2019-11-19 12:23:41 +0100 | [diff] [blame] | 536 | extends: .meson-build |
| 537 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 538 | UNWIND: "enabled" |
Samuel Pitoiset | 66b5627 | 2019-11-19 12:23:41 +0100 | [diff] [blame] | 539 | DRI_LOADERS: > |
| 540 | -D glx=dri |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 541 | -D gbm=enabled |
| 542 | -D egl=enabled |
Eric Engestrom | e00adef | 2019-06-25 15:44:16 +0100 | [diff] [blame] | 543 | -D platforms=x11,wayland |
Michel Dänzer | 42f8d5a | 2019-08-28 12:01:02 +0200 | [diff] [blame] | 544 | GALLIUM_ST: > |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 545 | -D dri3=enabled |
Michel Dänzer | 42f8d5a | 2019-08-28 12:01:02 +0200 | [diff] [blame] | 546 | -D gallium-extra-hud=true |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 547 | -D gallium-vdpau=enabled |
| 548 | -D gallium-xvmc=enabled |
Michel Dänzer | 42f8d5a | 2019-08-28 12:01:02 +0200 | [diff] [blame] | 549 | -D gallium-omx=bellagio |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 550 | -D gallium-va=enabled |
| 551 | -D gallium-xa=enabled |
Michel Dänzer | 42f8d5a | 2019-08-28 12:01:02 +0200 | [diff] [blame] | 552 | -D gallium-nine=true |
| 553 | -D gallium-opencl=disabled |
Samuel Pitoiset | e6d26d7 | 2019-11-19 14:36:02 +0100 | [diff] [blame] | 554 | GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swr,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink" |
Dave Airlie | b38879f | 2020-06-19 16:40:27 +1000 | [diff] [blame] | 555 | VULKAN_DRIVERS: swrast |
Michel Dänzer | 42f8d5a | 2019-08-28 12:01:02 +0200 | [diff] [blame] | 556 | EXTRA_OPTION: > |
| 557 | -D osmesa=gallium |
| 558 | -D tools=all |
Timothy Arceri | 1af1eb9 | 2020-07-08 13:56:51 +1000 | [diff] [blame] | 559 | -D werror=true |
Michel Dänzer | 59fcb01 | 2019-10-23 18:42:53 +0200 | [diff] [blame] | 560 | script: |
| 561 | - .gitlab-ci/meson-build.sh |
| 562 | - .gitlab-ci/run-shader-db.sh |
Rob Clark | ddcee24 | 2020-07-24 10:34:47 -0700 | [diff] [blame] | 563 | - src/freedreno/.gitlab-ci/run-fdtools.sh |
Michel Dänzer | 42f8d5a | 2019-08-28 12:01:02 +0200 | [diff] [blame] | 564 | |
Eric Anholt | 373e25e | 2020-08-24 10:15:35 -0700 | [diff] [blame] | 565 | # Test a release build with -Werror so new warnings don't sneak in. |
| 566 | meson-release: |
| 567 | extends: .meson-build |
| 568 | variables: |
| 569 | UNWIND: "enabled" |
| 570 | DRI_LOADERS: > |
| 571 | -D glx=dri |
| 572 | -D gbm=enabled |
| 573 | -D egl=enabled |
| 574 | -D platforms=x11,wayland |
| 575 | GALLIUM_ST: > |
| 576 | -D dri3=enabled |
| 577 | -D gallium-extra-hud=true |
| 578 | -D gallium-vdpau=enabled |
| 579 | -D gallium-xvmc=disabled |
| 580 | -D gallium-omx=disabled |
| 581 | -D gallium-va=enabled |
| 582 | -D gallium-xa=enabled |
| 583 | -D gallium-nine=false |
| 584 | -D gallium-opencl=disabled |
| 585 | -D llvm=false |
| 586 | GALLIUM_DRIVERS: "nouveau,kmsro,r300,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink" |
| 587 | BUILDTYPE: "release" |
| 588 | EXTRA_OPTION: > |
| 589 | -D osmesa=none |
| 590 | -D tools=all |
| 591 | -D werror=true |
| 592 | script: |
| 593 | - .gitlab-ci/meson-build.sh |
| 594 | |
Michel Dänzer | c56f091 | 2020-03-12 12:29:40 +0100 | [diff] [blame] | 595 | meson-classic: |
| 596 | extends: .meson-build |
| 597 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 598 | UNWIND: "enabled" |
Michel Dänzer | c56f091 | 2020-03-12 12:29:40 +0100 | [diff] [blame] | 599 | DRI_LOADERS: > |
| 600 | -D glx=dri |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 601 | -D gbm=enabled |
| 602 | -D egl=enabled |
Michel Dänzer | c56f091 | 2020-03-12 12:29:40 +0100 | [diff] [blame] | 603 | -D platforms=x11,wayland,drm,surfaceless |
| 604 | DRI_DRIVERS: "auto" |
| 605 | EXTRA_OPTION: > |
| 606 | -D osmesa=classic |
| 607 | -D tools=all |
Timothy Arceri | a1b89db | 2020-07-03 13:10:09 +1000 | [diff] [blame] | 608 | -D werror=true |
Michel Dänzer | c56f091 | 2020-03-12 12:29:40 +0100 | [diff] [blame] | 609 | |
Kristian H. Kristensen | 879444a | 2020-07-28 15:35:36 -0700 | [diff] [blame] | 610 | meson-android: |
| 611 | extends: .meson-build |
| 612 | variables: |
| 613 | UNWIND: "disabled" |
| 614 | DRI_LOADERS: > |
| 615 | -D glx=disabled |
| 616 | -D gbm=disabled |
| 617 | -D egl=enabled |
| 618 | -D platforms=android |
| 619 | GALLIUM_DRIVERS: freedreno |
| 620 | VULKAN_DRIVERS: freedreno,intel,amd |
| 621 | EXTRA_OPTION: > |
| 622 | -D android-stub=true |
| 623 | -D werror=true |
| 624 | GALLIUM_ST: > |
| 625 | -D dri3=disabled |
| 626 | -D gallium-vdpau=disabled |
| 627 | -D gallium-xvmc=disabled |
| 628 | -D gallium-omx=disabled |
| 629 | -D gallium-va=disabled |
| 630 | -D gallium-xa=disabled |
| 631 | -D gallium-nine=false |
| 632 | -D gallium-opencl=disabled |
| 633 | |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 634 | .meson-cross: |
| 635 | extends: |
| 636 | - .meson-build |
Michel Dänzer | cc9493f | 2020-02-27 18:27:56 +0100 | [diff] [blame] | 637 | stage: meson-misc |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 638 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 639 | UNWIND: "disabled" |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 640 | DRI_LOADERS: > |
| 641 | -D glx=disabled |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 642 | -D gbm=disabled |
| 643 | -D egl=enabled |
Eric Engestrom | a38e21d | 2019-06-25 13:47:04 +0100 | [diff] [blame] | 644 | -D platforms=[] |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 645 | -D osmesa=none |
| 646 | GALLIUM_ST: > |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 647 | -D dri3=disabled |
| 648 | -D gallium-vdpau=disabled |
| 649 | -D gallium-xvmc=disabled |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 650 | -D gallium-omx=disabled |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 651 | -D gallium-va=disabled |
| 652 | -D gallium-xa=disabled |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 653 | -D gallium-nine=false |
Michel Dänzer | 65610ec | 2020-01-30 18:21:15 +0100 | [diff] [blame] | 654 | LLVM_VERSION: "8" |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 655 | |
Michel Dänzer | 163ec5d | 2019-10-08 19:46:11 +0200 | [diff] [blame] | 656 | .meson-arm: |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 657 | extends: |
| 658 | - .meson-cross |
| 659 | - .use-arm_build |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 660 | variables: |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 661 | VULKAN_DRIVERS: freedreno |
Michel Dänzer | 793f6b3 | 2019-10-08 19:48:41 +0200 | [diff] [blame] | 662 | GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4" |
Tomeu Vizoso | 22d9764 | 2019-12-17 11:50:14 +0100 | [diff] [blame] | 663 | BUILDTYPE: "debugoptimized" |
Michel Dänzer | 163ec5d | 2019-10-08 19:46:11 +0200 | [diff] [blame] | 664 | tags: |
| 665 | - aarch64 |
| 666 | |
| 667 | meson-armhf: |
Tomeu Vizoso | 22d9764 | 2019-12-17 11:50:14 +0100 | [diff] [blame] | 668 | extends: |
| 669 | - .meson-arm |
| 670 | - .ci-deqp-artifacts |
Michel Dänzer | 163ec5d | 2019-10-08 19:46:11 +0200 | [diff] [blame] | 671 | variables: |
| 672 | CROSS: armhf |
Michel Dänzer | 793f6b3 | 2019-10-08 19:48:41 +0200 | [diff] [blame] | 673 | LLVM_VERSION: "7" |
Eric Anholt | 2574158 | 2020-02-24 10:31:33 -0800 | [diff] [blame] | 674 | EXTRA_OPTION: > |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 675 | -D llvm=disabled |
Tomeu Vizoso | dcd171f | 2020-04-01 13:07:46 +0200 | [diff] [blame] | 676 | UPLOAD_FOR_LAVA: 1 |
| 677 | DEBIAN_ARCH: armhf |
Tomeu Vizoso | 22d9764 | 2019-12-17 11:50:14 +0100 | [diff] [blame] | 678 | script: |
| 679 | - .gitlab-ci/meson-build.sh |
| 680 | - .gitlab-ci/prepare-artifacts.sh |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 681 | |
| 682 | meson-arm64: |
Michel Dänzer | 163ec5d | 2019-10-08 19:46:11 +0200 | [diff] [blame] | 683 | extends: |
| 684 | - .meson-arm |
| 685 | - .ci-deqp-artifacts |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 686 | variables: |
Rohan Garg | 9c0bbba | 2020-02-20 16:37:48 +0100 | [diff] [blame] | 687 | VULKAN_DRIVERS: "freedreno" |
Eric Anholt | 2574158 | 2020-02-24 10:31:33 -0800 | [diff] [blame] | 688 | EXTRA_OPTION: > |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 689 | -D llvm=disabled |
Tomeu Vizoso | dcd171f | 2020-04-01 13:07:46 +0200 | [diff] [blame] | 690 | UPLOAD_FOR_LAVA: 1 |
| 691 | DEBIAN_ARCH: arm64 |
Michel Dänzer | 59fcb01 | 2019-10-23 18:42:53 +0200 | [diff] [blame] | 692 | script: |
| 693 | - .gitlab-ci/meson-build.sh |
| 694 | - .gitlab-ci/prepare-artifacts.sh |
Michel Dänzer | e536446 | 2019-09-13 11:59:43 +0200 | [diff] [blame] | 695 | |
Rohan Garg | 9c0bbba | 2020-02-20 16:37:48 +0100 | [diff] [blame] | 696 | meson-arm64-build-test: |
| 697 | extends: |
| 698 | - .meson-arm |
| 699 | - .ci-deqp-artifacts |
| 700 | variables: |
| 701 | VULKAN_DRIVERS: "amd" |
Tomeu Vizoso | a956093 | 2020-08-03 16:19:38 +0200 | [diff] [blame] | 702 | EXTRA_OPTION: > |
| 703 | -Dtools=panfrost |
Rohan Garg | 9c0bbba | 2020-02-20 16:37:48 +0100 | [diff] [blame] | 704 | script: |
| 705 | - .gitlab-ci/meson-build.sh |
| 706 | |
Michel Dänzer | a2cce70 | 2019-03-20 15:58:31 +0100 | [diff] [blame] | 707 | meson-clang: |
| 708 | extends: .meson-build |
| 709 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 710 | UNWIND: "enabled" |
Samuel Pitoiset | 7362176 | 2019-11-19 14:37:32 +0100 | [diff] [blame] | 711 | DRI_LOADERS: > |
| 712 | -D glvnd=true |
Michel Dänzer | a2cce70 | 2019-03-20 15:58:31 +0100 | [diff] [blame] | 713 | DRI_DRIVERS: "auto" |
| 714 | GALLIUM_DRIVERS: "auto" |
Eric Engestrom | 47f419d | 2019-05-01 12:09:26 +0100 | [diff] [blame] | 715 | VULKAN_DRIVERS: intel,amd,freedreno |
Michel Dänzer | 5f0ff00 | 2019-12-13 11:02:16 +0100 | [diff] [blame] | 716 | CC: "ccache clang-9" |
| 717 | CXX: "ccache clang++-9" |
Michel Dänzer | a2cce70 | 2019-03-20 15:58:31 +0100 | [diff] [blame] | 718 | |
Daniel Stone | b8f2d71 | 2020-08-28 19:08:39 +0100 | [diff] [blame] | 719 | .meson-windows-vs2019: |
Dylan Baker | 19851c9 | 2019-10-23 14:36:19 -0700 | [diff] [blame] | 720 | extends: |
| 721 | - .build-windows |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 722 | - .use-windows_build_vs2019 |
Michel Dänzer | cc9493f | 2020-02-27 18:27:56 +0100 | [diff] [blame] | 723 | stage: meson-misc |
Dylan Baker | 19851c9 | 2019-10-23 14:36:19 -0700 | [diff] [blame] | 724 | script: |
Daniel Stone | 07885cb | 2020-03-24 11:11:36 +0000 | [diff] [blame] | 725 | - . .\.gitlab-ci\windows\mesa_build.ps1 |
Dylan Baker | 19851c9 | 2019-10-23 14:36:19 -0700 | [diff] [blame] | 726 | |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 727 | scons-win64: |
| 728 | extends: .scons-build |
| 729 | variables: |
Jose Fonseca | 27d58a1 | 2020-03-28 10:36:28 +0000 | [diff] [blame] | 730 | SCONS_TARGET: platform=windows machine=x86_64 debug=1 |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 731 | SCONS_CHECK_COMMAND: "true" |
Jose Fonseca | 27d58a1 | 2020-03-28 10:36:28 +0000 | [diff] [blame] | 732 | allow_failure: true |
Eric Engestrom | 89a7467 | 2019-01-21 09:42:37 +0000 | [diff] [blame] | 733 | |
Michel Dänzer | 6897715 | 2019-05-03 10:58:48 +0200 | [diff] [blame] | 734 | meson-clover: |
Eric Engestrom | b5a70af | 2019-01-28 18:05:22 +0000 | [diff] [blame] | 735 | extends: .meson-build |
| 736 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 737 | UNWIND: "enabled" |
Eric Engestrom | b5a70af | 2019-01-28 18:05:22 +0000 | [diff] [blame] | 738 | DRI_LOADERS: > |
| 739 | -D glx=disabled |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 740 | -D egl=disabled |
| 741 | -D gbm=disabled |
Michel Dänzer | 262e388 | 2020-05-30 23:55:28 +0200 | [diff] [blame] | 742 | GALLIUM_DRIVERS: "r600,radeonsi" |
Eric Engestrom | b5a70af | 2019-01-28 18:05:22 +0000 | [diff] [blame] | 743 | GALLIUM_ST: > |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 744 | -D dri3=disabled |
| 745 | -D gallium-vdpau=disabled |
| 746 | -D gallium-xvmc=disabled |
Eric Engestrom | b5a70af | 2019-01-28 18:05:22 +0000 | [diff] [blame] | 747 | -D gallium-omx=disabled |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 748 | -D gallium-va=disabled |
| 749 | -D gallium-xa=disabled |
Eric Engestrom | b5a70af | 2019-01-28 18:05:22 +0000 | [diff] [blame] | 750 | -D gallium-nine=false |
| 751 | -D gallium-opencl=icd |
Michel Dänzer | 6897715 | 2019-05-03 10:58:48 +0200 | [diff] [blame] | 752 | script: |
Michel Dänzer | 6897715 | 2019-05-03 10:58:48 +0200 | [diff] [blame] | 753 | - .gitlab-ci/meson-build.sh |
Samuel Pitoiset | 7d1c091 | 2019-08-21 11:45:25 +0200 | [diff] [blame] | 754 | - LLVM_VERSION=8 .gitlab-ci/meson-build.sh |
Michel Dänzer | 8a19992 | 2019-09-06 17:04:47 +0200 | [diff] [blame] | 755 | |
| 756 | meson-clover-old-llvm: |
Michel Dänzer | 88319f2 | 2019-09-18 16:17:01 +0200 | [diff] [blame] | 757 | extends: |
| 758 | - meson-clover |
Michel Dänzer | 3a48f45 | 2019-11-13 17:43:41 +0100 | [diff] [blame] | 759 | - .use-x86_build_old |
Michel Dänzer | 8a19992 | 2019-09-06 17:04:47 +0200 | [diff] [blame] | 760 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 761 | UNWIND: "disabled" |
Michel Dänzer | 8a19992 | 2019-09-06 17:04:47 +0200 | [diff] [blame] | 762 | DRI_LOADERS: > |
| 763 | -D glx=disabled |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 764 | -D egl=disabled |
| 765 | -D gbm=disabled |
Eric Engestrom | e00adef | 2019-06-25 15:44:16 +0100 | [diff] [blame] | 766 | -D platforms=[] |
Michel Dänzer | 8a19992 | 2019-09-06 17:04:47 +0200 | [diff] [blame] | 767 | GALLIUM_DRIVERS: "i915,r600" |
| 768 | script: |
Michel Dänzer | 6897715 | 2019-05-03 10:58:48 +0200 | [diff] [blame] | 769 | - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh |
| 770 | - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh |
| 771 | - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh |
Michel Dänzer | 262e388 | 2020-05-30 23:55:28 +0200 | [diff] [blame] | 772 | - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh |
| 773 | - LLVM_VERSION=7 .gitlab-ci/meson-build.sh |
Eric Engestrom | 8dab707 | 2019-01-28 18:09:24 +0000 | [diff] [blame] | 774 | |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 775 | meson-vulkan: |
| 776 | extends: .meson-build |
| 777 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 778 | UNWIND: "disabled" |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 779 | DRI_LOADERS: > |
| 780 | -D glx=disabled |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 781 | -D gbm=disabled |
| 782 | -D egl=disabled |
Eric Engestrom | e00adef | 2019-06-25 15:44:16 +0100 | [diff] [blame] | 783 | -D platforms=x11,wayland |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 784 | -D osmesa=none |
| 785 | GALLIUM_ST: > |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 786 | -D dri3=enabled |
| 787 | -D gallium-vdpau=disabled |
| 788 | -D gallium-xvmc=disabled |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 789 | -D gallium-omx=disabled |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 790 | -D gallium-va=disabled |
| 791 | -D gallium-xa=disabled |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 792 | -D gallium-nine=false |
| 793 | -D gallium-opencl=disabled |
Michel Dänzer | 75cc8c0 | 2019-09-25 12:56:58 +0200 | [diff] [blame] | 794 | -D b_sanitize=undefined |
| 795 | -D c_args=-fno-sanitize-recover=all |
| 796 | -D cpp_args=-fno-sanitize-recover=all |
| 797 | UBSAN_OPTIONS: "print_stacktrace=1" |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 798 | VULKAN_DRIVERS: intel,amd,freedreno |
Eric Engestrom | 5f8d29a | 2019-05-08 18:17:23 +0200 | [diff] [blame] | 799 | EXTRA_OPTION: > |
| 800 | -D vulkan-overlay-layer=true |
Rhys Perry | 54394a4 | 2020-06-03 14:25:12 +0100 | [diff] [blame] | 801 | -D build-aco-tests=true |
Eric Anholt | 3c7c021 | 2019-12-16 21:23:02 -0800 | [diff] [blame] | 802 | -D werror=true |
Michel Dänzer | 82b3009 | 2019-05-03 18:19:25 +0200 | [diff] [blame] | 803 | |
Eric Anholt | 11aa32a | 2019-07-11 12:58:28 -0700 | [diff] [blame] | 804 | meson-i386: |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 805 | extends: |
| 806 | - .meson-cross |
| 807 | - .use-i386_build |
Eric Anholt | 11aa32a | 2019-07-11 12:58:28 -0700 | [diff] [blame] | 808 | variables: |
Eric Engestrom | 1c82fa0 | 2019-08-09 23:46:50 +0100 | [diff] [blame] | 809 | CROSS: i386 |
Samuel Pitoiset | 529c0ba | 2020-03-04 09:37:46 +0100 | [diff] [blame] | 810 | VULKAN_DRIVERS: intel,amd |
Michel Dänzer | a059186 | 2020-03-12 12:31:05 +0100 | [diff] [blame] | 811 | GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl" |
Eric Anholt | 11aa32a | 2019-07-11 12:58:28 -0700 | [diff] [blame] | 812 | EXTRA_OPTION: > |
Eric Anholt | 11aa32a | 2019-07-11 12:58:28 -0700 | [diff] [blame] | 813 | -D vulkan-overlay-layer=true |
Eric Anholt | f6e5991 | 2019-12-16 21:23:02 -0800 | [diff] [blame] | 814 | -D werror=true |
Eric Anholt | 11aa32a | 2019-07-11 12:58:28 -0700 | [diff] [blame] | 815 | |
Michel Dänzer | 65610ec | 2020-01-30 18:21:15 +0100 | [diff] [blame] | 816 | meson-s390x: |
| 817 | extends: |
| 818 | - .meson-cross |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 819 | - .use-s390x_build |
Michel Dänzer | 130c0ba | 2020-03-18 18:41:43 +0100 | [diff] [blame] | 820 | tags: |
| 821 | - kvm |
Michel Dänzer | 65610ec | 2020-01-30 18:21:15 +0100 | [diff] [blame] | 822 | variables: |
| 823 | CROSS: s390x |
Michel Dänzer | 6c99de98 | 2020-05-23 16:07:53 +0200 | [diff] [blame] | 824 | EXTRA_OPTION: > |
| 825 | -D werror=true |
Michel Dänzer | 65610ec | 2020-01-30 18:21:15 +0100 | [diff] [blame] | 826 | GALLIUM_DRIVERS: "swrast" |
Michel Dänzer | 65610ec | 2020-01-30 18:21:15 +0100 | [diff] [blame] | 827 | |
| 828 | meson-ppc64el: |
| 829 | extends: |
| 830 | - meson-s390x |
Michel Dänzer | 3acd5a6 | 2020-06-01 19:08:30 +0200 | [diff] [blame] | 831 | - .use-ppc64el_build |
Michel Dänzer | 65610ec | 2020-01-30 18:21:15 +0100 | [diff] [blame] | 832 | variables: |
| 833 | CROSS: ppc64el |
Michel Dänzer | 6c99de98 | 2020-05-23 16:07:53 +0200 | [diff] [blame] | 834 | EXTRA_OPTION: "" |
Michel Dänzer | 8be81f8 | 2020-01-31 16:07:10 +0100 | [diff] [blame] | 835 | GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl" |
Michel Dänzer | 8be81f8 | 2020-01-31 16:07:10 +0100 | [diff] [blame] | 836 | VULKAN_DRIVERS: "amd" |
Michel Dänzer | 65610ec | 2020-01-30 18:21:15 +0100 | [diff] [blame] | 837 | |
Dylan Baker | 449f831 | 2019-10-11 09:04:14 -0700 | [diff] [blame] | 838 | meson-mingw32-x86_64: |
Dylan Baker | d905d9b | 2019-09-19 10:21:51 -0700 | [diff] [blame] | 839 | extends: .meson-build |
Michel Dänzer | cc9493f | 2020-02-27 18:27:56 +0100 | [diff] [blame] | 840 | stage: meson-misc |
Dylan Baker | d905d9b | 2019-09-19 10:21:51 -0700 | [diff] [blame] | 841 | variables: |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 842 | UNWIND: "disabled" |
Dylan Baker | d905d9b | 2019-09-19 10:21:51 -0700 | [diff] [blame] | 843 | DRI_DRIVERS: "" |
| 844 | GALLIUM_DRIVERS: "swrast" |
| 845 | EXTRA_OPTION: > |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 846 | -Dllvm=disabled |
Dylan Baker | d905d9b | 2019-09-19 10:21:51 -0700 | [diff] [blame] | 847 | -Dosmesa=gallium |
| 848 | --cross-file=.gitlab-ci/x86_64-w64-mingw32 |
| 849 | |
Samuel Pitoiset | 0b246d3 | 2019-11-18 09:30:27 +0100 | [diff] [blame] | 850 | .test: |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 851 | extends: |
| 852 | - .ci-run-policy |
Michel Dänzer | d9693c6 | 2020-07-21 16:13:37 +0200 | [diff] [blame] | 853 | # Cancel job if a newer commit is pushed to the same branch |
| 854 | interruptible: true |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 855 | variables: |
| 856 | GIT_STRATEGY: none # testing doesn't build anything from source |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 857 | before_script: |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 858 | # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY |
| 859 | - rm -rf install |
| 860 | - tar -xf artifacts/install.tar |
Samuel Pitoiset | eab328f | 2019-11-14 14:00:46 +0100 | [diff] [blame] | 861 | - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \; |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 862 | artifacts: |
Rob Clark | fdaf777 | 2019-11-17 11:33:01 -0800 | [diff] [blame] | 863 | when: always |
Michel Dänzer | 0103f02 | 2020-03-06 12:35:17 +0100 | [diff] [blame] | 864 | name: "mesa_${CI_JOB_NAME}" |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 865 | paths: |
| 866 | - results/ |
Samuel Pitoiset | 0b246d3 | 2019-11-18 09:30:27 +0100 | [diff] [blame] | 867 | |
| 868 | .test-gl: |
| 869 | extends: |
| 870 | - .test |
| 871 | variables: |
| 872 | TAG: *x86_test-gl |
| 873 | image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG" |
Michel Dänzer | c5aa271 | 2019-10-22 11:19:17 +0200 | [diff] [blame] | 874 | needs: |
Samuel Pitoiset | 66b5627 | 2019-11-19 12:23:41 +0100 | [diff] [blame] | 875 | - meson-testing |
Samuel Pitoiset | 520a77d | 2019-11-18 09:15:12 +0100 | [diff] [blame] | 876 | - x86_test-gl |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 877 | |
Samuel Pitoiset | 0b246d3 | 2019-11-18 09:30:27 +0100 | [diff] [blame] | 878 | .test-vk: |
| 879 | extends: |
| 880 | - .test |
| 881 | variables: |
| 882 | TAG: *x86_test-vk |
| 883 | image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG" |
| 884 | needs: |
| 885 | - meson-testing |
| 886 | - x86_test-vk |
| 887 | |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 888 | .piglit-test: |
Pierre-Eric Pelloux-Prayer | 2a9d6fd | 2019-10-30 20:39:08 +0100 | [diff] [blame] | 889 | extends: |
| 890 | - .test-gl |
| 891 | - .llvmpipe-rules |
Michel Dänzer | a3b3d3b | 2019-11-25 18:42:10 +0100 | [diff] [blame] | 892 | artifacts: |
| 893 | when: on_failure |
Michel Dänzer | 0103f02 | 2020-03-06 12:35:17 +0100 | [diff] [blame] | 894 | name: "mesa_${CI_JOB_NAME}" |
Michel Dänzer | a3b3d3b | 2019-11-25 18:42:10 +0100 | [diff] [blame] | 895 | paths: |
| 896 | - summary/ |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 897 | variables: |
| 898 | LIBGL_ALWAYS_SOFTWARE: 1 |
| 899 | PIGLIT_NO_WINDOW: 1 |
| 900 | script: |
Tomeu Vizoso | 92f3c51 | 2020-03-24 12:58:30 +0100 | [diff] [blame] | 901 | - install/piglit/run.sh |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 902 | |
| 903 | piglit-quick_gl: |
| 904 | extends: .piglit-test |
| 905 | variables: |
| 906 | LP_NUM_THREADS: 0 |
Dave Airlie | e6b2af5 | 2019-12-03 15:23:45 +1000 | [diff] [blame] | 907 | NIR_VALIDATE: 0 |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 908 | PIGLIT_OPTIONS: > |
Michel Dänzer | 5585b8e | 2019-12-03 10:45:28 +0100 | [diff] [blame] | 909 | --process-isolation false |
Eric Anholt | 3097efe | 2019-12-04 16:13:38 -0800 | [diff] [blame] | 910 | -x egl_ext_device_ |
| 911 | -x egl_ext_platform_device |
Matt Turner | 17c9ec9 | 2020-01-21 15:23:39 -0800 | [diff] [blame] | 912 | -x ext_timer_query@time-elapsed |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 913 | -x glx-multithread-clearbuffer |
| 914 | -x glx-multithread-shader-compile |
| 915 | -x max-texture-size |
| 916 | -x maxsize |
| 917 | PIGLIT_PROFILES: quick_gl |
| 918 | |
Michel Dänzer | 5585b8e | 2019-12-03 10:45:28 +0100 | [diff] [blame] | 919 | piglit-glslparser: |
| 920 | extends: .piglit-test |
| 921 | variables: |
| 922 | LP_NUM_THREADS: 0 |
Dave Airlie | e6b2af5 | 2019-12-03 15:23:45 +1000 | [diff] [blame] | 923 | NIR_VALIDATE: 0 |
Michel Dänzer | 5585b8e | 2019-12-03 10:45:28 +0100 | [diff] [blame] | 924 | PIGLIT_PROFILES: glslparser |
| 925 | |
| 926 | piglit-quick_shader: |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 927 | extends: .piglit-test |
| 928 | variables: |
| 929 | LP_NUM_THREADS: 1 |
Dave Airlie | e6b2af5 | 2019-12-03 15:23:45 +1000 | [diff] [blame] | 930 | NIR_VALIDATE: 0 |
Michel Dänzer | 5585b8e | 2019-12-03 10:45:28 +0100 | [diff] [blame] | 931 | PIGLIT_PROFILES: quick_shader |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 932 | |
Samuel Pitoiset | 16b999b | 2019-11-19 08:39:00 +0100 | [diff] [blame] | 933 | .deqp-test: |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 934 | variables: |
| 935 | DEQP_SKIPS: deqp-default-skips.txt |
| 936 | script: |
Tomeu Vizoso | 92f3c51 | 2020-03-24 12:58:30 +0100 | [diff] [blame] | 937 | - ./install/deqp-runner.sh |
Michel Dänzer | 576f7b6 | 2019-10-22 17:16:52 +0200 | [diff] [blame] | 938 | |
Samuel Pitoiset | 16b999b | 2019-11-19 08:39:00 +0100 | [diff] [blame] | 939 | .deqp-test-gl: |
| 940 | extends: |
| 941 | - .test-gl |
| 942 | - .deqp-test |
| 943 | |
| 944 | .deqp-test-vk: |
| 945 | extends: |
| 946 | - .test-vk |
| 947 | - .deqp-test |
| 948 | variables: |
| 949 | DEQP_VER: vk |
| 950 | |
Samuel Pitoiset | 1cdb6ed | 2020-02-26 09:33:14 +0100 | [diff] [blame] | 951 | .fossilize-test: |
| 952 | extends: .test-vk |
| 953 | script: |
Tomeu Vizoso | 92f3c51 | 2020-03-24 12:58:30 +0100 | [diff] [blame] | 954 | - ./install/fossilize-runner.sh |
Samuel Pitoiset | 276e6d7 | 2020-06-25 11:21:12 +0200 | [diff] [blame] | 955 | artifacts: |
| 956 | when: on_failure |
| 957 | name: "mesa_${CI_JOB_NAME}" |
| 958 | paths: |
| 959 | - results/ |
Samuel Pitoiset | 1cdb6ed | 2020-02-26 09:33:14 +0100 | [diff] [blame] | 960 | |
Michel Dänzer | 71436f9 | 2020-03-03 18:17:12 +0100 | [diff] [blame] | 961 | llvmpipe-gles2: |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 962 | variables: |
| 963 | DEQP_VER: gles2 |
Dave Airlie | e6b2af5 | 2019-12-03 15:23:45 +1000 | [diff] [blame] | 964 | NIR_VALIDATE: 0 |
Eric Anholt | fd24a95 | 2020-06-26 10:59:41 -0700 | [diff] [blame] | 965 | # Don't use threads inside llvmpipe, we've already got all cores |
| 966 | # busy at the deqp-runner level. |
Eric Anholt | f08c810 | 2019-11-04 10:54:41 -0800 | [diff] [blame] | 967 | LP_NUM_THREADS: 0 |
Eric Anholt | 46daaca | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 968 | DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt |
| 969 | LIBGL_ALWAYS_SOFTWARE: "true" |
Eric Anholt | 8b221e0 | 2020-04-17 12:39:32 -0700 | [diff] [blame] | 970 | DEQP_EXPECTED_RENDERER: llvmpipe |
Pierre-Eric Pelloux-Prayer | 2a9d6fd | 2019-10-30 20:39:08 +0100 | [diff] [blame] | 971 | extends: |
| 972 | - .deqp-test-gl |
| 973 | - .llvmpipe-rules |
Eric Anholt | 553cd82 | 2019-08-09 10:32:40 -0700 | [diff] [blame] | 974 | |
Michel Dänzer | 71436f9 | 2020-03-03 18:17:12 +0100 | [diff] [blame] | 975 | softpipe-gles2: |
Pierre-Eric Pelloux-Prayer | 2a9d6fd | 2019-10-30 20:39:08 +0100 | [diff] [blame] | 976 | extends: |
| 977 | - llvmpipe-gles2 |
| 978 | - .softpipe-rules |
Eric Anholt | 553cd82 | 2019-08-09 10:32:40 -0700 | [diff] [blame] | 979 | variables: |
Eric Anholt | 553cd82 | 2019-08-09 10:32:40 -0700 | [diff] [blame] | 980 | DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt |
Eric Anholt | f08c810 | 2019-11-04 10:54:41 -0800 | [diff] [blame] | 981 | DEQP_SKIPS: deqp-softpipe-skips.txt |
Eric Anholt | 553cd82 | 2019-08-09 10:32:40 -0700 | [diff] [blame] | 982 | GALLIUM_DRIVER: "softpipe" |
Eric Anholt | 8b221e0 | 2020-04-17 12:39:32 -0700 | [diff] [blame] | 983 | DEQP_EXPECTED_RENDERER: softpipe |
Eric Anholt | 553cd82 | 2019-08-09 10:32:40 -0700 | [diff] [blame] | 984 | |
Michel Dänzer | 71436f9 | 2020-03-03 18:17:12 +0100 | [diff] [blame] | 985 | softpipe-gles3: |
Eric Anholt | 553cd82 | 2019-08-09 10:32:40 -0700 | [diff] [blame] | 986 | variables: |
| 987 | DEQP_VER: gles3 |
Michel Dänzer | 71436f9 | 2020-03-03 18:17:12 +0100 | [diff] [blame] | 988 | extends: softpipe-gles2 |
Eric Anholt | 52843ec | 2019-11-05 10:31:29 -0800 | [diff] [blame] | 989 | |
Michel Dänzer | 71436f9 | 2020-03-03 18:17:12 +0100 | [diff] [blame] | 990 | softpipe-gles31: |
Michel Dänzer | 589d866 | 2020-07-21 16:36:28 +0200 | [diff] [blame] | 991 | parallel: 2 |
Eric Anholt | 52843ec | 2019-11-05 10:31:29 -0800 | [diff] [blame] | 992 | variables: |
| 993 | DEQP_VER: gles31 |
Michel Dänzer | 71436f9 | 2020-03-03 18:17:12 +0100 | [diff] [blame] | 994 | extends: softpipe-gles2 |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 995 | |
Eric Anholt | 8684061 | 2020-08-25 13:43:27 -0700 | [diff] [blame] | 996 | # Note that KHR-GL3* test sets include all tests from the previous |
| 997 | # version, so we only need to run one test list (unlike dEQP-GLES, |
| 998 | # where the test sets are separate). |
| 999 | softpipe-gl: |
| 1000 | variables: |
| 1001 | DEQP_VER: gl33 |
| 1002 | extends: |
| 1003 | - softpipe-gles2 |
| 1004 | |
Tomeu Vizoso | 2102d5e | 2020-05-12 10:18:48 +0200 | [diff] [blame] | 1005 | virgl-gles2-on-gl: |
Tomeu Vizoso | ad3ef6d | 2020-04-01 09:17:25 +0200 | [diff] [blame] | 1006 | variables: |
| 1007 | DEQP_VER: gles2 |
Tomeu Vizoso | ad3ef6d | 2020-04-01 09:17:25 +0200 | [diff] [blame] | 1008 | NIR_VALIDATE: 0 |
| 1009 | DEQP_NO_SAVE_RESULTS: 1 |
Daniel Stone | e513d8d | 2020-08-17 18:47:16 +0100 | [diff] [blame] | 1010 | DEQP_SKIPS: deqp-virgl-gl-skips.txt |
Eric Anholt | fd24a95 | 2020-06-26 10:59:41 -0700 | [diff] [blame] | 1011 | # Don't use threads inside llvmpipe, we've already got all cores |
| 1012 | # busy at the deqp-runner level. |
Tomeu Vizoso | ad3ef6d | 2020-04-01 09:17:25 +0200 | [diff] [blame] | 1013 | LP_NUM_THREADS: 0 |
Tomeu Vizoso | 2102d5e | 2020-05-12 10:18:48 +0200 | [diff] [blame] | 1014 | DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt |
| 1015 | DEQP_OPTIONS: "--deqp-log-images=disable" |
Tomeu Vizoso | ad3ef6d | 2020-04-01 09:17:25 +0200 | [diff] [blame] | 1016 | LIBGL_ALWAYS_SOFTWARE: "true" |
| 1017 | GALLIUM_DRIVER: "virpipe" |
Eric Anholt | 8b221e0 | 2020-04-17 12:39:32 -0700 | [diff] [blame] | 1018 | DEQP_EXPECTED_RENDERER: virgl |
Tomeu Vizoso | ad3ef6d | 2020-04-01 09:17:25 +0200 | [diff] [blame] | 1019 | extends: |
| 1020 | - .deqp-test-gl |
| 1021 | - .virgl-rules |
| 1022 | |
Tomeu Vizoso | 2102d5e | 2020-05-12 10:18:48 +0200 | [diff] [blame] | 1023 | virgl-gles3-on-gl: |
Tomeu Vizoso | ad3ef6d | 2020-04-01 09:17:25 +0200 | [diff] [blame] | 1024 | variables: |
| 1025 | DEQP_VER: gles3 |
Tomeu Vizoso | 2102d5e | 2020-05-12 10:18:48 +0200 | [diff] [blame] | 1026 | DEQP_RUNNER_OPTIONS: "--timeout 180" |
| 1027 | extends: virgl-gles2-on-gl |
Tomeu Vizoso | ad3ef6d | 2020-04-01 09:17:25 +0200 | [diff] [blame] | 1028 | |
Tomeu Vizoso | 2102d5e | 2020-05-12 10:18:48 +0200 | [diff] [blame] | 1029 | virgl-gles31-on-gl: |
Michel Dänzer | 589d866 | 2020-07-21 16:36:28 +0200 | [diff] [blame] | 1030 | parallel: 2 |
Tomeu Vizoso | 5a5316e | 2020-04-21 14:51:59 +0200 | [diff] [blame] | 1031 | variables: |
| 1032 | DEQP_VER: gles31 |
Tomeu Vizoso | 5a5316e | 2020-04-21 14:51:59 +0200 | [diff] [blame] | 1033 | MESA_GLES_VERSION_OVERRIDE: "3.1" |
| 1034 | MESA_GLSL_VERSION_OVERRIDE: "310" |
Dave Airlie | c8c7450 | 2020-06-04 12:10:40 +1000 | [diff] [blame] | 1035 | MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader" |
Tomeu Vizoso | 2102d5e | 2020-05-12 10:18:48 +0200 | [diff] [blame] | 1036 | extends: virgl-gles3-on-gl |
Tomeu Vizoso | 5a5316e | 2020-04-21 14:51:59 +0200 | [diff] [blame] | 1037 | |
Tomeu Vizoso | 287bf5f | 2020-05-13 09:46:06 +0200 | [diff] [blame] | 1038 | virgl-gl30-on-gl: |
| 1039 | variables: |
| 1040 | DEQP_VER: gl30 |
| 1041 | extends: virgl-gles2-on-gl |
| 1042 | |
| 1043 | virgl-gl31-on-gl: |
| 1044 | variables: |
| 1045 | DEQP_VER: gl31 |
| 1046 | extends: virgl-gles2-on-gl |
| 1047 | |
| 1048 | virgl-gl32-on-gl: |
| 1049 | variables: |
| 1050 | DEQP_VER: gl32 |
| 1051 | extends: virgl-gles2-on-gl |
| 1052 | |
Eric Anholt | 8edaa84 | 2020-03-19 11:45:01 -0700 | [diff] [blame] | 1053 | # Rules for tests that should not be present in MRs or the main |
| 1054 | # project's pipeline (don't block marge or report red on |
| 1055 | # mesa/mesamaster) but should be present on pipelines in personal |
| 1056 | # branches (so you can opt in to running the flaky test when you want |
| 1057 | # to). |
| 1058 | .test-manual: |
| 1059 | rules: |
Benjamin Tissoires | 1a3eb43 | 2020-07-07 15:02:35 +0200 | [diff] [blame] | 1060 | - *ignore_scheduled_pipelines |
Michel Dänzer | 6a8e5dd | 2020-04-11 15:32:02 +0200 | [diff] [blame] | 1061 | - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME' |
| 1062 | changes: |
| 1063 | *all_paths |
| 1064 | when: manual |
| 1065 | - when: never |
Eric Anholt | 8edaa84 | 2020-03-19 11:45:01 -0700 | [diff] [blame] | 1066 | |
Tomeu Vizoso | 2102d5e | 2020-05-12 10:18:48 +0200 | [diff] [blame] | 1067 | virgl-gles2-on-gles: |
| 1068 | variables: |
| 1069 | VIRGL_HOST_API: GLES |
| 1070 | DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt |
| 1071 | extends: |
| 1072 | - virgl-gles2-on-gl |
| 1073 | - .test-manual |
| 1074 | |
| 1075 | virgl-gles3-on-gles: |
| 1076 | variables: |
| 1077 | VIRGL_HOST_API: GLES |
| 1078 | DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt |
| 1079 | extends: |
| 1080 | - virgl-gles3-on-gl |
| 1081 | - .test-manual |
| 1082 | |
| 1083 | virgl-gles31-on-gles: |
| 1084 | variables: |
| 1085 | VIRGL_HOST_API: GLES |
| 1086 | DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt |
| 1087 | extends: |
| 1088 | - virgl-gles31-on-gl |
| 1089 | - .test-manual |
| 1090 | |
Fritz Koenig | 2a98cf3 | 2020-02-12 19:31:24 +0000 | [diff] [blame] | 1091 | arm64_a630_gles2: |
Michel Dänzer | c6c7652 | 2019-11-11 18:13:28 +0100 | [diff] [blame] | 1092 | extends: |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1093 | - arm64_a306_gles2 |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 1094 | variables: |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1095 | BM_KERNEL: /lava-files/cheza-kernel |
| 1096 | BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 root=/dev/nfs rw nfsrootdebug nfsroot=,tcp,nfsvers=4.2 init=/init" |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 1097 | DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt |
Eric Anholt | c19b7fc | 2020-08-19 10:43:54 -0700 | [diff] [blame] | 1098 | DEQP_FLAKES: deqp-freedreno-a630-flakes.txt |
Eric Anholt | 72fe7b9 | 2020-06-08 15:36:16 -0700 | [diff] [blame] | 1099 | GIT_STRATEGY: none |
Eric Anholt | 8b221e0 | 2020-04-17 12:39:32 -0700 | [diff] [blame] | 1100 | DEQP_EXPECTED_RENDERER: FD630 |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1101 | DEQP_NO_SAVE_RESULTS: "" |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 1102 | tags: |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1103 | - google-freedreno-cheza |
| 1104 | script: |
Eric Anholt | 72fe7b9 | 2020-06-08 15:36:16 -0700 | [diff] [blame] | 1105 | - ./install/bare-metal/cros-servo.sh |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 1106 | |
Fritz Koenig | 2a98cf3 | 2020-02-12 19:31:24 +0000 | [diff] [blame] | 1107 | arm64_a630_gles31: |
| 1108 | extends: arm64_a630_gles2 |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 1109 | variables: |
Michel Dänzer | 128581d | 2019-09-11 18:55:43 +0200 | [diff] [blame] | 1110 | DEQP_VER: gles31 |
Eric Anholt | d9f7fce | 2020-06-18 12:55:41 -0700 | [diff] [blame] | 1111 | # gles31 is about 12 minutes with validation enabled. |
| 1112 | NIR_VALIDATE: 0 |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 1113 | |
Fritz Koenig | 2a98cf3 | 2020-02-12 19:31:24 +0000 | [diff] [blame] | 1114 | arm64_a630_gles3: |
| 1115 | extends: arm64_a630_gles2 |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 1116 | variables: |
| 1117 | DEQP_VER: gles3 |
Eric Anholt | d9f7fce | 2020-06-18 12:55:41 -0700 | [diff] [blame] | 1118 | # gles3 is about 15 minutes with validation enabled. |
| 1119 | NIR_VALIDATE: 0 |
Eric Anholt | 6f0dc08 | 2019-06-28 16:35:32 -0700 | [diff] [blame] | 1120 | |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1121 | # We almost always manage to lower UBOs back to constant uploads in |
| 1122 | # the test suite, so get a little testing for it here. |
Rob Clark | e5169b1 | 2020-07-16 14:20:22 -0700 | [diff] [blame] | 1123 | arm64_a630_noubo: |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1124 | extends: arm64_a630_gles31 |
Eric Anholt | 5082ac0 | 2020-04-17 12:02:37 -0700 | [diff] [blame] | 1125 | variables: |
| 1126 | DEQP_VER: gles31 |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1127 | IR3_SHADER_DEBUG: nouboopt |
| 1128 | DEQP_CASELIST_FILTER: "functional.*ubo" |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1129 | |
| 1130 | # The driver does some guessing as to whether to render using gmem |
| 1131 | # or bypass, and some GLES3.1 features interact with either one. |
| 1132 | # Do a little testing with gmem and bypass forced. |
Rob Clark | e5169b1 | 2020-07-16 14:20:22 -0700 | [diff] [blame] | 1133 | arm64_a630_bypass: |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1134 | extends: arm64_a630_gles31 |
| 1135 | variables: |
Eric Anholt | 5082ac0 | 2020-04-17 12:02:37 -0700 | [diff] [blame] | 1136 | CI_NODE_INDEX: 1 |
| 1137 | CI_NODE_TOTAL: 5 |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1138 | FD_MESA_DEBUG: nogmem |
| 1139 | DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt |
| 1140 | |
Rob Clark | e5169b1 | 2020-07-16 14:20:22 -0700 | [diff] [blame] | 1141 | arm64_a630_traces: |
Eric Anholt | b88c46f | 2020-06-08 14:51:59 -0700 | [diff] [blame] | 1142 | extends: |
| 1143 | - arm64_a630_gles2 |
| 1144 | variables: |
| 1145 | BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh" |
| 1146 | DEVICE_NAME: "freedreno-a630" |
Tomeu Vizoso | 7d5f4d3 | 2020-08-05 10:17:26 +0200 | [diff] [blame] | 1147 | DRIVER_NAME: "freedreno" |
Eric Anholt | b88c46f | 2020-06-08 14:51:59 -0700 | [diff] [blame] | 1148 | TRACIE_NO_UNIT_TESTS: 1 |
Tomeu Vizoso | d4ca45e | 2020-07-31 08:13:15 +0200 | [diff] [blame] | 1149 | TRACIE_UPLOAD_TO_MINIO: 1 |
Eric Anholt | b88c46f | 2020-06-08 14:51:59 -0700 | [diff] [blame] | 1150 | # This lets us run several more traces which don't use any features we're |
| 1151 | # missing. |
| 1152 | MESA_GLSL_VERSION_OVERRIDE: "460" |
| 1153 | MESA_GL_VERSION_OVERRIDE: "4.6" |
Eric Anholt | b88c46f | 2020-06-08 14:51:59 -0700 | [diff] [blame] | 1154 | |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1155 | # Along with checking gmem path, check that we don't get obvious nir |
| 1156 | # validation failures (though it's too expensive to have it on for the |
| 1157 | # full CTS) |
Rob Clark | e5169b1 | 2020-07-16 14:20:22 -0700 | [diff] [blame] | 1158 | arm64_a630_gmem: |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1159 | extends: arm64_a630_gles31 |
| 1160 | variables: |
| 1161 | CI_NODE_INDEX: 1 |
| 1162 | CI_NODE_TOTAL: 5 |
| 1163 | FD_MESA_DEBUG: nobypass |
| 1164 | NIR_VALIDATE: 1 |
Eric Anholt | 5082ac0 | 2020-04-17 12:02:37 -0700 | [diff] [blame] | 1165 | |
Jonathan Marek | be33d58 | 2020-07-14 10:58:56 -0400 | [diff] [blame] | 1166 | arm64_a630_vk: |
Eric Anholt | 9e11cce | 2020-05-25 12:57:25 -0700 | [diff] [blame] | 1167 | extends: arm64_a630_gles2 |
| 1168 | variables: |
| 1169 | DEQP_VER: vk |
| 1170 | CI_NODE_INDEX: 1 |
| 1171 | CI_NODE_TOTAL: 50 |
| 1172 | VK_DRIVER: freedreno |
| 1173 | # Force binning in the main run, which makes sure we render at |
| 1174 | # least 2 bins. This is the path that impacts the most different |
| 1175 | # features. However, we end up with flaky results in |
| 1176 | # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex. |
| 1177 | TU_DEBUG: forcebin |
| 1178 | |
| 1179 | # Do a separate sysmem pass over the testcases that really affect sysmem |
| 1180 | # rendering. This is currently very flaky, leave it as an option for devs |
| 1181 | # to click play on in their branches. |
Rob Clark | e5169b1 | 2020-07-16 14:20:22 -0700 | [diff] [blame] | 1182 | arm64_a630_vk_sysmem: |
Eric Anholt | 9e11cce | 2020-05-25 12:57:25 -0700 | [diff] [blame] | 1183 | extends: |
Jonathan Marek | be33d58 | 2020-07-14 10:58:56 -0400 | [diff] [blame] | 1184 | - arm64_a630_vk |
Eric Anholt | 9e11cce | 2020-05-25 12:57:25 -0700 | [diff] [blame] | 1185 | variables: |
| 1186 | CI_NODE_INDEX: 1 |
| 1187 | CI_NODE_TOTAL: 10 |
| 1188 | DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*" |
| 1189 | DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt |
| 1190 | TU_DEBUG: sysmem |
| 1191 | |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1192 | .baremetal-test: |
| 1193 | extends: |
| 1194 | - .ci-run-policy |
Eric Anholt | 109816b | 2020-06-08 15:09:51 -0700 | [diff] [blame] | 1195 | - .test |
Michel Dänzer | d9693c6 | 2020-07-21 16:13:37 +0200 | [diff] [blame] | 1196 | # Cancel job if a newer commit is pushed to the same branch |
| 1197 | interruptible: true |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1198 | stage: test |
Eric Anholt | 6f4fc4f | 2020-05-15 11:22:37 -0700 | [diff] [blame] | 1199 | artifacts: |
| 1200 | when: always |
| 1201 | name: "mesa_${CI_JOB_NAME}" |
| 1202 | paths: |
| 1203 | - results/ |
| 1204 | - serial*.txt |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1205 | |
Eric Anholt | aea8c9c | 2020-03-03 11:44:45 -0800 | [diff] [blame] | 1206 | arm64_a306_gles2: |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1207 | extends: |
| 1208 | - .baremetal-test |
Christian Gmeiner | 839bc2d | 2020-06-07 23:19:50 +0200 | [diff] [blame] | 1209 | - .use-arm64_test |
Eric Anholt | f778c48 | 2020-03-18 09:51:03 -0700 | [diff] [blame] | 1210 | - .freedreno-rules |
Eric Anholt | aea8c9c | 2020-03-03 11:44:45 -0800 | [diff] [blame] | 1211 | variables: |
Eric Anholt | 4bc15e7 | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1212 | BM_KERNEL: /lava-files/Image.gz |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1213 | BM_DTB: /lava-files/apq8016-sbc.dtb |
| 1214 | BM_ROOTFS: /lava-files/rootfs-arm64 |
| 1215 | BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8" |
Eric Anholt | 3b5e71c | 2020-05-01 09:57:00 -0700 | [diff] [blame] | 1216 | FLAKES_CHANNEL: "#freedreno-ci" |
Eric Anholt | 109816b | 2020-06-08 15:09:51 -0700 | [diff] [blame] | 1217 | BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh" |
Eric Anholt | aea8c9c | 2020-03-03 11:44:45 -0800 | [diff] [blame] | 1218 | DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt |
Eric Anholt | c19b7fc | 2020-08-19 10:43:54 -0700 | [diff] [blame] | 1219 | DEQP_SKIPS: deqp-default-skips.txt |
| 1220 | DEQP_FLAKES: deqp-freedreno-a307-flakes.txt |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1221 | DEQP_VER: gles2 |
| 1222 | DEQP_PARALLEL: 4 |
Eric Anholt | 8b221e0 | 2020-04-17 12:39:32 -0700 | [diff] [blame] | 1223 | DEQP_EXPECTED_RENDERER: FD307 |
Eric Anholt | 46d9b50 | 2020-05-22 15:48:55 -0700 | [diff] [blame] | 1224 | # Since we can't get artifacts back yet, skip making them. |
| 1225 | DEQP_NO_SAVE_RESULTS: 1 |
Eric Anholt | b4bccbd | 2020-05-15 11:20:44 -0700 | [diff] [blame] | 1226 | # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite. |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1227 | script: |
Eric Anholt | 72fe7b9 | 2020-06-08 15:36:16 -0700 | [diff] [blame] | 1228 | - ./install/bare-metal/fastboot.sh |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1229 | needs: |
Christian Gmeiner | 839bc2d | 2020-06-07 23:19:50 +0200 | [diff] [blame] | 1230 | - arm64_test |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1231 | - meson-arm64 |
Eric Anholt | aea8c9c | 2020-03-03 11:44:45 -0800 | [diff] [blame] | 1232 | tags: |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1233 | - google-freedreno-db410c |
| 1234 | |
Eric Anholt | b4bccbd | 2020-05-15 11:20:44 -0700 | [diff] [blame] | 1235 | # Fractional run, single threaded, due to flaky results |
Eric Anholt | 8edaa84 | 2020-03-19 11:45:01 -0700 | [diff] [blame] | 1236 | arm64_a306_gles3: |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1237 | extends: |
| 1238 | - arm64_a306_gles2 |
Eric Anholt | cf5ba9d | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1239 | variables: |
| 1240 | DEQP_VER: gles3 |
Eric Anholt | fa49a50 | 2020-04-22 11:30:38 -0700 | [diff] [blame] | 1241 | DEQP_PARALLEL: 1 |
| 1242 | CI_NODE_INDEX: 1 |
Eric Anholt | b4bccbd | 2020-05-15 11:20:44 -0700 | [diff] [blame] | 1243 | CI_NODE_TOTAL: 25 |
| 1244 | NIR_VALIDATE: 0 |
Eric Anholt | aea8c9c | 2020-03-03 11:44:45 -0800 | [diff] [blame] | 1245 | |
Eric Anholt | ae442c3 | 2020-05-15 16:15:07 -0700 | [diff] [blame] | 1246 | # Fractional runs with debug options. Note that since we're not |
| 1247 | # hitting the iommu faults, we can run in parallel (derive from gles2, not gles3). |
| 1248 | arm64_a306_gles3_options: |
| 1249 | extends: arm64_a306_gles2 |
| 1250 | variables: |
| 1251 | DEQP_VER: gles3 |
| 1252 | script: |
| 1253 | # Check that the non-constbuf UBO case works. |
Eric Anholt | 72fe7b9 | 2020-06-08 15:36:16 -0700 | [diff] [blame] | 1254 | - DEQP_RUN_SUFFIX=-nouboopt IR3_SHADER_DEBUG=nouboopt DEQP_CASELIST_FILTER="functional.*ubo" ./install/bare-metal/fastboot.sh |
Eric Anholt | ae442c3 | 2020-05-15 16:15:07 -0700 | [diff] [blame] | 1255 | |
Eric Anholt | 4bc15e7 | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1256 | arm64_a530_gles2: |
| 1257 | extends: |
| 1258 | - arm64_a306_gles2 |
Eric Anholt | 4bc15e7 | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1259 | variables: |
| 1260 | BM_KERNEL: /lava-files/db820c-kernel |
| 1261 | BM_DTB: /lava-files/db820c.dtb |
Eric Anholt | 6033c10 | 2020-05-19 16:33:10 -0700 | [diff] [blame] | 1262 | # Disable SMP because only CPU 0 is at a freq higher than 19mhz on |
| 1263 | # current upstream kernel. |
| 1264 | BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp" |
Eric Anholt | 4bc15e7 | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1265 | DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt |
Eric Anholt | c19b7fc | 2020-08-19 10:43:54 -0700 | [diff] [blame] | 1266 | DEQP_FLAKES: deqp-freedreno-a530-flakes.txt |
Eric Anholt | 8b221e0 | 2020-04-17 12:39:32 -0700 | [diff] [blame] | 1267 | DEQP_EXPECTED_RENDERER: FD530 |
Eric Anholt | b4bccbd | 2020-05-15 11:20:44 -0700 | [diff] [blame] | 1268 | NIR_VALIDATE: 0 |
Eric Anholt | 4bc15e7 | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1269 | tags: |
| 1270 | - google-freedreno-db820c |
| 1271 | |
| 1272 | arm64_a530_gles3: |
| 1273 | extends: |
| 1274 | - arm64_a530_gles2 |
Eric Anholt | 4bc15e7 | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1275 | variables: |
| 1276 | DEQP_VER: gles3 |
Eric Anholt | fa49a50 | 2020-04-22 11:30:38 -0700 | [diff] [blame] | 1277 | DEQP_PARALLEL: 1 |
| 1278 | CI_NODE_INDEX: 1 |
Eric Anholt | 6bf40c2 | 2020-05-19 16:44:14 -0700 | [diff] [blame] | 1279 | CI_NODE_TOTAL: 40 |
Eric Anholt | 4bc15e7 | 2020-03-03 14:38:09 -0800 | [diff] [blame] | 1280 | |
Eric Anholt | 6c01152 | 2020-04-22 12:08:06 -0700 | [diff] [blame] | 1281 | arm64_a530_gles31: |
| 1282 | extends: |
| 1283 | - arm64_a530_gles3 |
| 1284 | variables: |
| 1285 | DEQP_VER: gles31 |
Eric Anholt | 6bf40c2 | 2020-05-19 16:44:14 -0700 | [diff] [blame] | 1286 | CI_NODE_INDEX: 1 |
| 1287 | CI_NODE_TOTAL: 10 |
Eric Anholt | 6c01152 | 2020-04-22 12:08:06 -0700 | [diff] [blame] | 1288 | |
Samuel Pitoiset | c1a3627 | 2019-11-13 11:03:52 +0100 | [diff] [blame] | 1289 | # RADV CI |
| 1290 | .test-radv: |
Samuel Pitoiset | 8f55439 | 2020-03-09 17:53:51 +0100 | [diff] [blame] | 1291 | extends: .radv-rules |
Samuel Pitoiset | 48e9203 | 2020-03-06 08:39:25 +0100 | [diff] [blame] | 1292 | stage: radv |
Samuel Pitoiset | c1a3627 | 2019-11-13 11:03:52 +0100 | [diff] [blame] | 1293 | variables: |
| 1294 | VK_DRIVER: radeon |
Samuel Pitoiset | a44cfac | 2020-05-04 11:44:45 +0200 | [diff] [blame] | 1295 | ACO_DEBUG: validateir,validatera |
Samuel Pitoiset | 42a3d82 | 2020-02-05 17:04:20 +0100 | [diff] [blame] | 1296 | |
Eric Anholt | 8edaa84 | 2020-03-19 11:45:01 -0700 | [diff] [blame] | 1297 | # Can only be triggered manually on personal branches because RADV is the only |
| 1298 | # driver that does Vulkan testing at the moment. |
Samuel Pitoiset | c1a3627 | 2019-11-13 11:03:52 +0100 | [diff] [blame] | 1299 | radv_polaris10_vkcts: |
| 1300 | extends: |
| 1301 | - .deqp-test-vk |
Eric Anholt | 8edaa84 | 2020-03-19 11:45:01 -0700 | [diff] [blame] | 1302 | - .test-radv |
| 1303 | - .test-manual |
Samuel Pitoiset | c1a3627 | 2019-11-13 11:03:52 +0100 | [diff] [blame] | 1304 | variables: |
Samuel Pitoiset | c1a3627 | 2019-11-13 11:03:52 +0100 | [diff] [blame] | 1305 | DEQP_SKIPS: deqp-radv-polaris10-skips.txt |
| 1306 | tags: |
| 1307 | - polaris10 |
Alexandros Frantzis | 803ab5d | 2020-01-08 17:46:46 +0200 | [diff] [blame] | 1308 | |
Samuel Pitoiset | e22d562 | 2020-03-06 08:36:14 +0100 | [diff] [blame] | 1309 | radv-fossils: |
| 1310 | extends: |
| 1311 | - .fossilize-test |
| 1312 | - .test-radv |
| 1313 | script: |
Samuel Pitoiset | f9dbca8 | 2020-05-04 11:48:46 +0200 | [diff] [blame] | 1314 | # Pitcairn (GFX6) |
| 1315 | - export RADV_FORCE_FAMILY="pitcairn" |
| 1316 | - ./install/fossilize-runner.sh |
Samuel Pitoiset | f9dbca8 | 2020-05-04 11:48:46 +0200 | [diff] [blame] | 1317 | # Bonaire (GFX7) |
| 1318 | - export RADV_FORCE_FAMILY="bonaire" |
| 1319 | - ./install/fossilize-runner.sh |
Samuel Pitoiset | f9dbca8 | 2020-05-04 11:48:46 +0200 | [diff] [blame] | 1320 | # Polaris10 (GFX8) |
Samuel Pitoiset | e22d562 | 2020-03-06 08:36:14 +0100 | [diff] [blame] | 1321 | - export RADV_FORCE_FAMILY="polaris10" |
Tomeu Vizoso | 92f3c51 | 2020-03-24 12:58:30 +0100 | [diff] [blame] | 1322 | - ./install/fossilize-runner.sh |
Samuel Pitoiset | f9dbca8 | 2020-05-04 11:48:46 +0200 | [diff] [blame] | 1323 | # Vega10 (GFX9) |
Samuel Pitoiset | e22d562 | 2020-03-06 08:36:14 +0100 | [diff] [blame] | 1324 | - export RADV_FORCE_FAMILY="gfx900" |
Tomeu Vizoso | 92f3c51 | 2020-03-24 12:58:30 +0100 | [diff] [blame] | 1325 | - ./install/fossilize-runner.sh |
Samuel Pitoiset | f9dbca8 | 2020-05-04 11:48:46 +0200 | [diff] [blame] | 1326 | # Navi10 (GFX10) |
Samuel Pitoiset | e22d562 | 2020-03-06 08:36:14 +0100 | [diff] [blame] | 1327 | - export RADV_FORCE_FAMILY="gfx1010" |
Tomeu Vizoso | 92f3c51 | 2020-03-24 12:58:30 +0100 | [diff] [blame] | 1328 | - ./install/fossilize-runner.sh |
Samuel Pitoiset | ac6e207 | 2020-08-10 13:29:14 +0200 | [diff] [blame] | 1329 | # Sienna Cichlid (GFX10) |
| 1330 | - export RADV_FORCE_FAMILY="gfx1030" |
| 1331 | - ./install/fossilize-runner.sh |
Samuel Pitoiset | 42a3d82 | 2020-02-05 17:04:20 +0100 | [diff] [blame] | 1332 | |
Andres Gomez | 0ac731b1 | 2020-02-20 18:26:30 +0200 | [diff] [blame] | 1333 | # Traces CI |
Alexandros Frantzis | 803ab5d | 2020-01-08 17:46:46 +0200 | [diff] [blame] | 1334 | .traces-test: |
Alexandros Frantzis | 803ab5d | 2020-01-08 17:46:46 +0200 | [diff] [blame] | 1335 | cache: |
| 1336 | key: ${CI_JOB_NAME} |
| 1337 | paths: |
Rohan Garg | 90a39af | 2020-02-28 13:48:53 +0100 | [diff] [blame] | 1338 | - traces-db/ |
Tomeu Vizoso | dfe394b | 2020-07-21 10:48:43 +0200 | [diff] [blame] | 1339 | variables: |
| 1340 | TRACIE_UPLOAD_TO_MINIO: 1 |
Andres Gomez | 0ac731b1 | 2020-02-20 18:26:30 +0200 | [diff] [blame] | 1341 | |
| 1342 | .traces-test-gl: |
| 1343 | extends: |
| 1344 | - .test-gl |
| 1345 | - .traces-test |
Alexandros Frantzis | 803ab5d | 2020-01-08 17:46:46 +0200 | [diff] [blame] | 1346 | script: |
Tomeu Vizoso | 92f3c51 | 2020-03-24 12:58:30 +0100 | [diff] [blame] | 1347 | - ./install/tracie-runner-gl.sh |
Andres Gomez | 0ac731b1 | 2020-02-20 18:26:30 +0200 | [diff] [blame] | 1348 | |
| 1349 | .traces-test-vk: |
| 1350 | extends: |
| 1351 | - .test-vk |
| 1352 | - .traces-test |
| 1353 | script: |
Tomeu Vizoso | 92f3c51 | 2020-03-24 12:58:30 +0100 | [diff] [blame] | 1354 | - ./install/tracie-runner-vk.sh |
Alexandros Frantzis | 803ab5d | 2020-01-08 17:46:46 +0200 | [diff] [blame] | 1355 | |
| 1356 | llvmpipe-traces: |
Pierre-Eric Pelloux-Prayer | 2a9d6fd | 2019-10-30 20:39:08 +0100 | [diff] [blame] | 1357 | extends: |
| 1358 | - .traces-test-gl |
| 1359 | - .llvmpipe-rules |
Alexandros Frantzis | 803ab5d | 2020-01-08 17:46:46 +0200 | [diff] [blame] | 1360 | variables: |
| 1361 | LIBGL_ALWAYS_SOFTWARE: "true" |
| 1362 | GALLIUM_DRIVER: "llvmpipe" |
Andres Gomez | 1d75595 | 2020-02-20 17:32:08 +0200 | [diff] [blame] | 1363 | DEVICE_NAME: "gl-vmware-llvmpipe" |
Tomeu Vizoso | 7d5f4d3 | 2020-08-05 10:17:26 +0200 | [diff] [blame] | 1364 | DRIVER_NAME: "llvmpipe" |
Andres Gomez | 0ac731b1 | 2020-02-20 18:26:30 +0200 | [diff] [blame] | 1365 | |
| 1366 | radv-polaris10-traces: |
| 1367 | extends: |
| 1368 | - .traces-test-vk |
Eric Anholt | 8edaa84 | 2020-03-19 11:45:01 -0700 | [diff] [blame] | 1369 | - .test-radv |
| 1370 | - .test-manual |
Andres Gomez | 0ac731b1 | 2020-02-20 18:26:30 +0200 | [diff] [blame] | 1371 | variables: |
| 1372 | DEVICE_NAME: "vk-amd-polaris10" |
Tomeu Vizoso | 7d5f4d3 | 2020-08-05 10:17:26 +0200 | [diff] [blame] | 1373 | DRIVER_NAME: "radv" |
Andres Gomez | 0ac731b1 | 2020-02-20 18:26:30 +0200 | [diff] [blame] | 1374 | tags: |
| 1375 | - polaris10 |
Tomeu Vizoso | 8cba1a1 | 2020-04-21 15:44:03 +0200 | [diff] [blame] | 1376 | |
Andres Gomez | b6b100c | 2020-04-24 19:32:42 +0300 | [diff] [blame] | 1377 | radv-raven-traces: |
| 1378 | extends: |
| 1379 | - .traces-test-vk |
| 1380 | - .test-radv |
| 1381 | - .test-manual |
| 1382 | variables: |
| 1383 | DEVICE_NAME: "vk-amd-raven" |
Tomeu Vizoso | 7d5f4d3 | 2020-08-05 10:17:26 +0200 | [diff] [blame] | 1384 | DRIVER_NAME: "radv" |
Andres Gomez | b6b100c | 2020-04-24 19:32:42 +0300 | [diff] [blame] | 1385 | tags: |
| 1386 | - raven |
| 1387 | |
Tomeu Vizoso | 8cba1a1 | 2020-04-21 15:44:03 +0200 | [diff] [blame] | 1388 | virgl-traces: |
| 1389 | extends: |
| 1390 | - .traces-test-gl |
| 1391 | - .virgl-rules |
| 1392 | variables: |
| 1393 | LIBGL_ALWAYS_SOFTWARE: "true" |
| 1394 | GALLIUM_DRIVER: "virpipe" |
| 1395 | DEVICE_NAME: "gl-virgl" |
Tomeu Vizoso | 7d5f4d3 | 2020-08-05 10:17:26 +0200 | [diff] [blame] | 1396 | DRIVER_NAME: "virgl" |
Tomeu Vizoso | 8cba1a1 | 2020-04-21 15:44:03 +0200 | [diff] [blame] | 1397 | MESA_GLES_VERSION_OVERRIDE: "3.1" |
| 1398 | MESA_GLSL_VERSION_OVERRIDE: "310" |