Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
vkd3d
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wine
vkd3d
Commits
f525e9e9
Commit
f525e9e9
authored
1 year ago
by
Giovanni Mascellani
Committed by
Alexandre Julliard
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
ci: Run the tests on a 32 bit Linux system.
parent
fdaacb15
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!322
ci: Run the tests on a 32 bit Linux system.
Pipeline
#14440
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gitlab/README
+4
-4
4 additions, 4 deletions
gitlab/README
gitlab/build.yml
+17
-2
17 additions, 2 deletions
gitlab/build.yml
with
21 additions
and
6 deletions
gitlab/README
+
4
−
4
View file @
f525e9e9
...
...
@@ -11,10 +11,10 @@ testing, and uploads it to the GitLab container registry. The Docker
script is in the file image.docker.
The file build.yml contains the actual testing targets. Currently
vkd3d is tested on Linux x86-64
, with two different Vulkan drivers
(both from Mesa): llvmpipe (a software
implementation) and RADV (a
hardware implementation backed by an AMD
GPU). The testing logs are
available as CI artifacts.
vkd3d is tested on Linux
, on
x86-64
and i386, each architecture with
two different Vulkan drivers
(both from Mesa): llvmpipe (a software
implementation) and RADV (a
hardware implementation backed by an AMD
GPU). The testing logs are
available as CI artifacts.
Some custom runner configuration is required in order to run the tests
on an AMD GPU. Specifically, a runner tagged with `amd-gpu' must be
...
...
This diff is collapsed.
Click to expand it.
gitlab/build.yml
+
17
−
2
View file @
f525e9e9
...
...
@@ -25,15 +25,30 @@
paths
:
-
artifacts
build-radv
:
build-radv
-64
:
extends
:
.build
tags
:
-
amd-gpu
variables
:
VK_LOADER_DRIVERS_SELECT
:
'
radeon_*'
build-llvmpipe
:
build-llvmpipe
-64
:
extends
:
.build
allow_failure
:
true
variables
:
VK_LOADER_DRIVERS_SELECT
:
'
lvp_*'
build-radv-32
:
extends
:
.build
tags
:
-
amd-gpu
variables
:
VK_LOADER_DRIVERS_SELECT
:
'
radeon_*'
CC
:
'
gcc
-m32'
build-llvmpipe-32
:
extends
:
.build
allow_failure
:
true
variables
:
VK_LOADER_DRIVERS_SELECT
:
'
lvp_*'
CC
:
'
gcc
-m32'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment