Commit f1a7a16b authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

gitlab: Move build steps to the build-all script.

parent 6a09b45a
#!/bin/bash
echo "Building $(git log -1)"
echo "---"
set -Eeuxo pipefail
./tools/make_requests
./tools/make_makefiles
autoreconf
cd build64
../configure -C --enable-win64 --enable-werror --with-mingw
make -s -j$(nproc)
cd ..
cd build32
../configure -C --enable-werror --with-mingw
make -s -j$(nproc)
cd ..
git reset --hard
......@@ -30,15 +30,7 @@ build-all:
- build64/config.log
- build32/config.log
script:
- ./tools/make_requests
- ./tools/make_makefiles
- autoreconf
- cd build64
- ../configure -C --enable-win64 --enable-werror --with-mingw
- make -s -j$(nproc)
- cd ../build32
- ../configure -C --enable-werror --with-mingw
- make -s -j$(nproc)
- ./tools/gitlab/build-all
build-winetest:
extends: .wine-build
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment