2019-04-27 21:15:31 +00:00
|
|
|
stages:
|
|
|
|
- dependencies
|
|
|
|
- build
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
protobuf_static_steamos:
|
|
|
|
stage: dependencies
|
|
|
|
image: tianon/steamos
|
|
|
|
|
|
|
|
script:
|
|
|
|
# don't rebuild every time
|
|
|
|
- test -e ./protobuf/prefix && exit 0
|
|
|
|
- apt update && apt -y install gcc-4.9 g++-4.9 git autotools-dev automake libtool g++-4.9-multilib gcc-4.9-multilib build-essential
|
|
|
|
- export BASE_PREFIX_PATH=$(pwd)
|
|
|
|
- echo $BASE_PREFIX_PATH
|
|
|
|
- mkdir deps
|
|
|
|
- cd deps
|
|
|
|
- git clone https://github.com/protocolbuffers/protobuf.git
|
|
|
|
- cd protobuf
|
|
|
|
- sh autogen.sh
|
|
|
|
- ./configure "CC=gcc-4.9 -m32" "CXX=g++-4.9 -m32" CPPFLAGS="-fPIC -Ofast" CXXFLAGS="-fPIC -Ofast" --prefix=$BASE_PREFIX_PATH/protobuf/prefix_x86/ --disable-shared --enable-static
|
|
|
|
- make -j8 install
|
|
|
|
- make clean
|
|
|
|
- ./configure "CC=gcc-4.9" "CXX=g++-4.9" "CPPFLAGS=-fPIC -Ofast" "CXXFLAGS=-fPIC -Ofast" --prefix=$BASE_PREFIX_PATH/protobuf/prefix/ --disable-shared --enable-static
|
|
|
|
- make -j8 install
|
|
|
|
cache:
|
|
|
|
key: protobuf-static-steamos-cache
|
|
|
|
# policy: push
|
|
|
|
paths:
|
|
|
|
- protobuf/
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- protobuf/
|
|
|
|
expire_in: 1 day
|
|
|
|
|
|
|
|
build_steamos:
|
|
|
|
stage: build
|
|
|
|
image: tianon/steamos
|
|
|
|
dependencies:
|
|
|
|
- protobuf_static_steamos
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- apt update && apt -y install gcc-4.9 g++-4.9 git libtool g++-4.9-multilib gcc-4.9-multilib
|
|
|
|
script:
|
|
|
|
- ls -lah
|
|
|
|
- uname -a
|
|
|
|
- sed -i 's/^g++ /g++-4.9 /g' build_steamos.sh
|
|
|
|
- sed -i 's/..\/protobuf\/prefix/.\/protobuf\/prefix/g' build_steamos.sh
|
|
|
|
- sh build_steamos.sh
|
|
|
|
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- linux/
|
|
|
|
expire_in: 1 day
|
|
|
|
|
2019-05-01 15:38:21 +00:00
|
|
|
build_windows:
|
|
|
|
stage: build
|
|
|
|
image: fedora
|
|
|
|
|
|
|
|
script:
|
|
|
|
- dnf -y install wine wget p7zip sed
|
|
|
|
- sed -i 's/C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\bin\\amd64\\vcvars64.bat/.\\sdk_standalone\\set_vars64.bat/g' build_env_x64.bat
|
|
|
|
- sed -i 's/C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\bin\\vcvars32.bat/.\\sdk_standalone\\set_vars32.bat/g' build_env_x86.bat
|
|
|
|
- sed -i 's/..\\vcpkg\\packages\\/.\\/g' build_set_protobuf_directories.bat
|
|
|
|
- wget 'https://gitlab.com/Mr_Goldberg/goldberg_emulator/uploads/48db8f434a193aae872279dc4f5dde6a/sdk_standalone.7z'
|
|
|
|
- wget 'https://gitlab.com/Mr_Goldberg/goldberg_emulator/uploads/0119304e030098b4821d73170fe52084/protobuf_x64-windows-static.7z'
|
|
|
|
- wget 'https://gitlab.com/Mr_Goldberg/goldberg_emulator/uploads/4185a97ab363ddc1859127e59ec68581/protobuf_x86-windows-static.7z'
|
|
|
|
- 7za x protobuf_x86-windows-static.7z -oprotobuf_x86-windows-static
|
|
|
|
- 7za x protobuf_x64-windows-static.7z -oprotobuf_x64-windows-static
|
|
|
|
- 7za x sdk_standalone.7z -osdk_standalone
|
|
|
|
- DLL_FILES="$(ls dll/*.cpp | tr "\n" " ")"; sed "s|dll/\*.cpp|$DLL_FILES|g" -i *.bat
|
|
|
|
- DLL_FILES="$(ls detours/*.cpp | tr "\n" " ")"; sed "s|detours/\*.cpp|$DLL_FILES|g" -i *.bat
|
|
|
|
- DLL_FILES="$(ls dll/*.proto | tr "\n" " " | sed "s/.proto/.pb.cc/g")"; sed "s|dll/\*.cc|$DLL_FILES|g" -i *.bat
|
2019-05-01 15:53:57 +00:00
|
|
|
- wine cmd /c build_win_release.bat
|
2019-05-01 15:38:21 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- release/
|
|
|
|
expire_in: 1 day
|
|
|
|
|
|
|
|
deploy_all:
|
|
|
|
stage: deploy
|
|
|
|
image: fedora
|
|
|
|
dependencies:
|
|
|
|
- build_windows
|
|
|
|
- build_steamos
|
|
|
|
|
|
|
|
script:
|
|
|
|
- ls -lah
|
|
|
|
- mv linux release/
|
|
|
|
- rm -rf !(release)
|
|
|
|
- mv release/* ./
|
|
|
|
- rm -rf release
|
|
|
|
artifacts:
|
|
|
|
name: "Goldberg_Lan_Steam_Emu_$CI_COMMIT_REF_NAME-$CI_COMMIT_TAG-$CI_COMMIT_SHORT_SHA"
|
|
|
|
|