Skip to content
Snippets Groups Projects

Use i386 images for i386 jobs

Merged Zubin requested to merge wip/fix-i386 into master
2 files
+ 5
2
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 4
1
@@ -171,9 +171,12 @@ archName I386 = "i386"
-- The path to the docker image (just for linux builders)
dockerImage :: Arch -> Opsys -> Maybe String
dockerImage arch (Linux distro) =
Just image
Just (archStr ++ image)
where
image = distroName distro
archStr = case arch of
I386 -> "i386/"
_ -> ""
dockerImage _ _ = Nothing
-----------------------------------------------------------------------------
Loading