diff options
author | Emil Velikov <[email protected]> | 2017-02-01 08:42:14 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-02-16 15:17:51 +0000 |
commit | f9b18d5acc6de67f12778a68d9136f52a6e36c48 (patch) | |
tree | 232f1d74d044c00f32a7dee7a172805caa407eef /docs/releasing.html | |
parent | 03f4982c684da33e621744acda52730ed05df1bd (diff) |
docs/releasing: build test the scons/mingw build
We had multiple cases in the past where files used only by the
Scons/MinGW/Windows build were missing.
Avoid such instances and add a step to catch them early.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/releasing.html')
-rw-r--r-- | docs/releasing.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/releasing.html b/docs/releasing.html index 09ef4ac89cb..ec1baee0943 100644 --- a/docs/releasing.html +++ b/docs/releasing.html @@ -343,11 +343,17 @@ Here is one solution that I've been using. $__mesa_root/autogen.sh --enable-llvm-shared-libs && make -j2 distcheck - # Build check the tarballs (scons) - tar -xaf mesa-$__version.tar.xz && cd mesa-$__version && scons && cd .. + # Build check the tarballs (scons, linux) + tar -xaf mesa-$__version.tar.xz && cd mesa-$__version + scons + cd .. && rm -rf mesa-$__version + + # Build check the tarballs (scons, windows/mingw) + tar -xaf mesa-$__version.tar.xz && cd mesa-$__version + scons platform=windows toolchain=crossmingw + cd .. && rm -rf mesa-$__version # Test the automake binaries - rm -rf mesa-$__version tar -xaf mesa-$__version.tar.xz && cd mesa-$__version ./configure \ --with-dri-drivers=i965,swrast \ |