psi29a
1278d3b784
make sure to use new path and trick caching
4 years ago
psi29a
c0e3f1c7ce
Update CI/before_script.msvc.sh
4 years ago
psi29a
b3e27fae4c
use updated msvc lz4 provided by anyoldname3
4 years ago
Alexei Dobrohotov
d6612eef20
Fix indentation
4 years ago
Bret Curtis
503bf7f78b
added lz4 to our macos deps; let us see if that works
4 years ago
Bret Curtis
edd6a329ee
tell 7z to extract to specific directory
4 years ago
Bret Curtis
e280a36701
correct filename of lz4 archive; fix indentation
4 years ago
Bret Curtis
7954dccb44
lz4 prep work; get linux and windows ready
4 years ago
psi29a
b222872446
Android build on gitlab
4 years ago
Bret Curtis
b024518c18
Resolve 'shared_timed_mutex' is unavailable: introduced in macOS 10.12
4 years ago
AnyOldName3
ef41edba9b
Install tools in before_install.osx.sh
4 years ago
elsid
23fe60a067
Run unit tests in a separate build
4 years ago
psi29a
1ddfb18cb3
Update CI/before_script.msvc.sh
4 years ago
Bret Curtis
c291bb169e
fixed indentation and additional diffs
4 years ago
Bret Curtis
18899394c4
typo in path
4 years ago
Bret Curtis
bf7e1bd32b
make switch to using GL hosted windows deps
4 years ago
AnyOldName3
9e547e14d2
Allow setting up multiple build configurations at once
...
Also fix some bugs discovered in the process.
For multi-config generators, this basically just copies the DLLs for
each configuration, and for single-config, due to there being separate
build directories with separate extracted dependencies for each, it
defaults to just one, and will run the script several times if you
manually specify several.
Details include:
* Changing CONFIGURATION from a string to an array called
CONFIGURATIONS. This gets iterated over in a bunch of places.
* Fixing a typo of 'cannot'
* Making the DLL lists arrays per-config, too.
* Some handling for the recursive stuff and a warning if configurations
are set with a multi-config generator.
* Moving the configuration name sanitisation after they've been set.
* Myriad changes to Google Test:
- Build it in a directory specific to the build tools - previously,
having an MSVC 2017 and MSVC 2019 build on the same machine was
impossible if unit tests were on, even though it's allowed otherwise
- Use either Debug or Release Google Test as its finder isn't looking
for RelWithDebInfo or capable of dealing with it if we try and use
it anyway.
- Always build Google Test with MSBuild as it's much less hassle due
to CMake setting up the environment for us. Currently, MSVC always
comes with something that can build solution files, no matter how
you get it, so this shouldn't upset anyone.
- Use CMake's --install mode so we can set the install prefix in the
place that uses it.
- Pass CMake both Debug and Release Google Test instead of risking a
C/C++ library configuration mismatch causing linker and runtime
errors - it'll pick a suitable one for each configuration.
- Pass the library type explicitly as CMake can't cope without a
Release library if you only gave it Debug, due to accessing a
Release-specific variable unconditionally.
* Remove the -legacy flag from vswhere as it's only needed for MSVC
2015, which we don't support any more.
* Fix the -version argument for vswhere as I'd massively cocked it up.
I don't know how that happened as I did test it on a machine with
multiple MSVC versions installed, which was the failure case, but it
didn't fail then.
4 years ago
AnyOldName3
f4db29a717
Kill BUILD_CONFIG
...
It was basically just CONFIGURATION but less confusing. CONFIGURATION
could just be less confusing.
4 years ago
AnyOldName3
70384d8a83
Restore previous bash settings on exit
4 years ago
AnyOldName3
b71f13965a
Don't set pipefail
4 years ago
descawed
58e0b34adc
Verify certificates when downloading dependencies
4 years ago
Nikolay Kasyanov
3be1cdef33
[macOS, CI] Use Xcode 11.6 ( #2970 )
...
* [macOS, CI] Use Xcode 11.6
* [macOS, CI] Enable OpenCs build and see how it goes
* [macOS, CI] Re-enable package build and check
5 years ago
AnyOldName3
38f1eae575
Merge remote-tracking branch 'upstream/master' into yet-another-windows-shared-runner-attempt
5 years ago
Bret Curtis
4a17bf27a3
Set BULLET_ROOT via add_cmake_opts like we do the rest
5 years ago
Bret Curtis
14d5b3eeaf
try release again and turning on bit by bit for ccache to be used
5 years ago
Bret Curtis
db75398fba
only build openmw for now
5 years ago
Bret Curtis
3ea576efdc
do not build a few things; temporary disable checking package; get things compiling and cached first
5 years ago
Bret Curtis
1e23d007dd
Use Debug instead of Release to increase build time (passing -O0)
5 years ago
Bret Curtis
a62e3a7b35
What happens when I remove the sysroot line?
5 years ago
Bret Curtis
3eeee4bc94
drop need to upgrade qt, 5.15 is by default installed; add CXX_FLAGS; retarget SYSROOT to 10.15
5 years ago
AnyOldName3
0d7b9c51fd
Log misparsed stuff as it caused an unexpected CI failure
5 years ago
Evil Eye
fcc761c13c
Update Windows CI script to download a version of Google Test that can actually compile the tests
5 years ago
AnyOldName3
35d920569c
Tweak error message
...
As we have `set -e`, the error message would never be printed if we
genuinely failed to create the virtualenv, just if we succeeded and the
expected directories didn't exist.
5 years ago
AnyOldName3
657306c293
Make Qt work on my machine
...
Switches `eval stuff $STRIP` to `run_cmd` as it'll log errors on failure
and eval was breaking commands that ran just fine otherwise.
Don't download aqt wheel from pip and install it in two separate steps.
Upgrade aqt from 0.8 to 0.9.2 as there are bugs with 0.8 that stop Qt
5.15.0 from working for some people.
Fall back to Qt 5.14.2 for 64-bit on MSVC 2017 as the package list is
broken and that specific combination doesn't work right now.
5 years ago
Bret Curtis
ae49549f03
change build type to debug for ci/cd
...
it should set -O0 which should prioritise fast compilation for gcc
5 years ago
Bret Curtis
ad25b22db7
removed need for split compilation for static analysis, we've gone from openmw taking 30 minutes to taking 3. Merging them also makes our before_script.linux.sh less complicated; removed redundant CMAKE flag; set build type to RelWithDebInfo as None has no meaning (even if it still builds).
5 years ago
Bret Curtis
61a5c6125d
#5480 : Drop Qt4 support and require Qt 5.12 or later.
5 years ago
AnyOldName3
36d0a55600
Add error message when vswhere doesn't find MSVC
5 years ago
AnyOldName3
a93ea93d9d
Remove MSVC 2015 specific parts of CI script.
...
Also add error when MSVC 2015 is requested.
5 years ago
AnyOldName3
7ef3a9d8ac
Remove schoolboy error
5 years ago
psi29a
9067894335
Merge branch 'set-e-kills-ret' into 'master'
...
Fix Windows prebuild script error messages
Closes #5459
See merge request OpenMW/openmw!223
5 years ago
AnyOldName3
079be5d485
Remove annoying warning
5 years ago
AnyOldName3
761558f612
Remove test data
...
A dummy command was used to check the script would fail if a command was missing.
Not being a real command, it always made the script fail as a command was missing.
5 years ago
AnyOldName3
5bffa7453f
Merge branch 'fix-msvc-buildtools' into 'master'
...
Fix the build script not detecting Visual Studio Build Tools installation
See merge request OpenMW/openmw!224
5 years ago
apommel
4b831f99da
Allow vswhere to detect build tools installations
5 years ago
Alexei Dobrohotov
09537ed312
Merge branch 'master' into 'AnyOldName3-master-patch-15901'
...
# Conflicts:
# CI/before_script.msvc.sh
5 years ago
AnyOldName3
a6493ce329
Don't exit prebuild script on nonzero exit code when we already check it
...
We have `set -e` enabled, so normally exit the script if a command fails.
We also had explicit exit code checks in a few places with user-friendly
error messages. These were never printed as the script exited before we
could check the exit code due to a bad exit code.
5 years ago
AnyOldName3
0d2129ca13
Add success message to Windows prebuild script
5 years ago
AnyOldName3
13c4e4b2a9
Fix ifs for ACTIVATE_MSVC
5 years ago
AnyOldName3
be22e80d33
Merge branch 'always-say-what-to-do' into 'master'
...
Print MSVC activation info in verbose mode, too.
See merge request OpenMW/openmw!212
5 years ago
AnyOldName3
6e267e398e
Fix copy-paste snafu
5 years ago
AnyOldName3
86c1d0f4be
Warn about fake stub Python
5 years ago
AnyOldName3
08e5d93c9b
Print MSVC activation info in verbose mode, too.
5 years ago
elsid
2e09e96f5d
Fix msvc dir for Qt
...
Otherwise it fails with:
Qt 5.15.0... Exists. CI/before_script.msvc.sh: line 781: cd: MSVC2019_64_Ninja/deps/Qt/5.15.0/msvc2015_64: No such file or directory
5 years ago
Bret Curtis
9fd8470741
Merge branch 'master' into cherry-pick-e0b35232
5 years ago
Alexander "Ananace" Olofsson
7b781d8890
Windows CI dependency upgrade ( #2847 )
...
* Windows CI: Use OSG 3.4-experimental for 0.46
* Update compiled Windows CI dependencies
Only built and pushed so far, still need to try making full OpenMW
builds with them as well.
* Update missed Bullet version number
* MyGUI uses RelWithDebInfo for Release builds now
* Update Windows CI dependencies, switch Qt install
* Fix aqt retrieval and setup
* Make aqt install output slightly nicer
* Bump to Qt 5.15 for VS2019 support
* Fix FFmpeg and Qt install parts
* Fix OSG plugin DLL copying
* Add CMake flag for double-precision bullet
* Roll back 2019 to Boost 1.71 for CI
* Move aqt into unpack step, to allow manual install
5 years ago
psi29a
38daa83ff6
Merge branch 'ninja' into 'master'
...
Enable Windows Ninja builds
See merge request OpenMW/openmw!202
(cherry picked from commit e0b352323226ff11e230f6489e826df332fa681a)
c1e673ce Unify path conversion functions
fdf0fdbb Fix NMake with MSVC 2019
bdd4a814 Activate MSVC during CMake setup for NMake
eae41050 Support sourcing
c0d28a0e Warn that MSVC environment will need to be activated
bd16ad62 Ninja
7d57e6e2 Support MSVC 2015
3679d329 Check MSVC activated correctly
ed4b73b8 Fix post-2015 Visual Studio
4ffa116a Print message when it's necessary instead of when it isn't
c6e09461 Add instructions for using VS' non-.sln support
d9bb6e63 Activate MSVC later
9ca26358 Create batch script to activate correct MSVC
61df647d Provide scripts to activate selected MSVC in existing shell without kerfuffle
5 years ago
elsid
66da72048a
Update bullet for windows up to 2.87
5 years ago
elsid
4e0c07de0f
Build install target in CI
5 years ago
elsid
99cd99bc3b
Remove unused BUILD_MYGUI_PLUGIN option
5 years ago
elsid
ca649003ed
Use googletest 1.10.0
...
To get support for INSTANTIATE_TEST_SUITE_P macro
5 years ago
Bret Curtis
0d10293f24
everything is implied yes
5 years ago
Bret Curtis
9698c21b36
build bsa and esm tools
5 years ago
Nikolay Kasyanov
c8596f782a
[macOS, CI] Use prebuilt dependencies with SDL2 2.0.12
5 years ago
Andrei Kortunov
d2acac0ebe
Fix Qt download link for Windows
5 years ago
Bret Curtis
444d667d22
give sdl2 2.0.12 for windows a try
5 years ago
Bret Curtis
42640b7811
no need to re-map when using system default
5 years ago
Bret Curtis
5091e2c371
bump to bionic; gcc-9 and clang-10
5 years ago
elsid
c690f2d43d
Disable coverage for travis CI
5 years ago
Andrei Kortunov
ed31b8c467
Attempt to fix MacOS CI
5 years ago
Andrei Kortunov
05a8702b6e
Fix Boost 1.70+ detection
5 years ago
Bret Curtis
5a8bfac4df
hard code Qt to version
5 years ago
Bret Curtis
e7caf7a037
bump that qt
5 years ago
Bret Curtis
4c94fcd52b
add msvc2019 and ditch msvc2015
5 years ago
naratzul
0220bcdef3
Add Visual Studio 2019 support
5 years ago
Nikolay Kasyanov
c89876538d
Fix macOS nightly preupload check
...
Previously, it was always ls'ing home directory.
6 years ago
Nikolay Kasyanov
d305e1933a
Get ccache path from Homebrew
...
Also, don't use legacy syntax to get Qt path.
6 years ago
Nikolay Kasyanov
95ae9c4ac8
Don't downgrade CMake
6 years ago
Nikolay Kasyanov
a11c391231
Enable ccache for macOS CI
6 years ago
Bret Curtis
8c1a73ff11
Merge pull request #2220 from elsid/ccache
...
Use ccache for linux CI build
6 years ago
elsid
26dfa287f9
Use ccache for linux CI build
6 years ago
elsid
7d2c741d1d
Fix compare with empty value
6 years ago
elsid
e99f783c65
Remove white spaces and trailing spaces
6 years ago
Alexander Olofsson
f8118272f4
Package FreeType plugin for OSG in Windows
...
Fixes #4872
6 years ago
Chris Djali
cb5a57e41b
Merge pull request #1547 from AnyOldName3/osgshadow-test-vdsm
...
Shadows
6 years ago
Nikolay Kasyanov
cdbd3a9c09
Fix macOS CI
...
It looks like Homebrew has deprecated some syntax making CMake formula invalid, now a for of the formula is used.
6 years ago
AnyOldName3
8482236a82
Merge remote-tracking branch 'upstream/master' into osgshadow-test-vdsm
6 years ago
Azdul
6d8215ecb6
Google Test / Google Mock / OpenMW unit tests on Windows
6 years ago
Nikolay Kasyanov
4a266b3277
[macOS, CI] Update dependencies
...
They now include boost iostreams for TES 4/5 BSA support.
See https://gitlab.com/OpenMW/openmw/merge_requests/56 .
6 years ago
Nikolay Kasyanov
9cce6ecfe3
[macOS] Update deploy script to use ssh/scp
6 years ago
Nikolay Kasyanov
956934911a
[macOS, CI] Use CMake 3.12.4
...
See https://gitlab.com/OpenMW/openmw/issues/4767 for details.
6 years ago
Bret Curtis
8e113a32b2
Merge pull request #2081 from nikolaykasyanov/unneed-macos-files
...
Remove unnecessary Recastnavigation headers & static libs from macOS package
6 years ago
Nikolay Kasyanov
e0161bb2bf
Update macOS dependencies, use Xcode 10.1
6 years ago
Nikolay Kasyanov
f98a454ec1
Add a script to verify macOS package contents
6 years ago
AnyOldName3
e2515f6db7
Merge branch 'master' into osgshadow-test-vdsm
6 years ago
AnyOldName3
2a2d9f0006
Fix if statements
6 years ago
AnyOldName3
14fcb9158f
Add NMake support to the Windows prebuild script.
6 years ago
AnyOldName3
642002b302
Merge remote-tracking branch 'upstream/master' into osgshadow-test-vdsm
6 years ago
Bret Curtis
fc15fa0a89
we now have gcc-5 _and_ gcc-8, along with QT5 and use system tinyxml
6 years ago
Alexander Olofsson
f8f66b83b6
Update OpenAL-soft to 1.19.1
6 years ago
Bret Curtis
461ba74d6d
Merge pull request #2017 from sthalik/pr/allow-build-under-cygwin-msys2-etc
...
fix build with CI dependencies on all Cygwin derivatives
6 years ago
Bret Curtis
9ae077c033
use c++11 std::align from <memory> ( #2026 )
...
* use c++11 std::align from <memory>
* for Ubuntu, use gcc5 instead of 4.8
* use travis to set gcc to 5
eval
and sudo
* use eval in .travis.yml
* use gcc-8
* replace precise with trusty llvm toolchain, because we have been using trusty for awhile now
* push things to matrix, so we can support multiple releases if we want
* we should not be allowing for failures, we are ready to start trusting clang and its analyzer
* scan-build was pushed to another package
* use gcc-8 still but wrap in scan-build
* travis.yml cleanup, have output of scripts go to stdout, make search for substring a regex
use double []
fix missing ,
use bash to use regex
black spaces matter
* set human readable names for our various builds, split out our static analysis between openmw and openmw-cs
* test if not set, then set otherwise ignore
* use quotes
* do not eval it, set it in travis env
* no more &&
* what does clang7 have to say?
* use sourceline for now
* use clang-7 instead of clang-7.0
* yes, llvm-toolchain-trusty-7 not llvm-toolchain-trusty-7.0
* for static analysis, openmw is compiled and checked on its own while openmw-cs is build with all the rest. this might change in the future.
and actually do it the other way around
6 years ago
Stanislaw Halik
b099981c91
fix CI msvc build outside git bash
...
It was only by accident that git bash worked for CI basing on the
"real_pwd()" expression. Replace the dubious replacement pattern with
"cygpath", which is present on git bash, Cygwin, and msys2 alike. In
particular git bash uses msys2 internally.
I was able to confirm a working build under msys2 with a wrapper for
MSVC invocation via the Ninja generator.
6 years ago
Andrei Kortunov
f88d5e808c
Rewrite media decoder to use FFMpeg 3.2+ API (task #4686 )
6 years ago
AnyOldName3
d0c254bc7e
Merge remote-tracking branch 'upstream/master' into osgshadow-test-vdsm
6 years ago
elsid
792a0585c0
Add recastnavigation as subdirectory
6 years ago
AnyOldName3
afd700dab9
Ensure different Boost versions get different names
6 years ago
AnyOldName3
3785ba6aa0
Merge upstream/master
6 years ago
elsid
49d81241db
Merge branch 'master' into pathfinder_detour
6 years ago
Nikolay Kasyanov
f62ca24356
[macOS, CI] Use dependencies with downgraded MyGUI, fixing #4665
6 years ago
elsid
3d97e96f55
Add dependency to recastnavigation
6 years ago
AnyOldName3
0124be5713
Merge upstream/master
6 years ago
Capostrophic
e627f49df4
Fix AppVeyor build
6 years ago
elsid
2073218fc6
Use specific googletest version
6 years ago
AnyOldName3
80082308f0
Merge upstream (shadermanager log system revamp)
6 years ago
elsid
ef631a0961
Add dependency for GMock
6 years ago
AnyOldName3
cc23a968d1
Merge upstream/master
7 years ago
Bret Curtis
84b80ae405
no spaces in assignment
7 years ago
Bret Curtis
b910106713
Catch an unbound variable before it happens.
7 years ago
Bret Curtis
739c49d59b
Merge branch 'master' into 'win10_ci'
...
# Conflicts:
# CI/before_script.msvc.sh
7 years ago
Bret Curtis
57e2573593
Update before_script.msvc.sh
...
check if temp directory exists, error out and warn user about it.
7 years ago
Bret Curtis
70e9d5c0a0
; it?
7 years ago
Bret Curtis
11030e56c4
detect existing dir
7 years ago
Bret Curtis
4f07ca28a6
Try passing the _real_ windows dir to innoinstaller, then using the linux-like directory for mv.
7 years ago
Bret Curtis
d4c9586bd0
try just converting the \ to a /
7 years ago
Bret Curtis
af75c1e909
Update before_script.msvc.sh
...
reverting back to what works
7 years ago
Bret Curtis
4d60fe5a76
reverting back
7 years ago
Bret Curtis
b8b07b52f0
try this...
7 years ago
Bret Curtis
4177fd04eb
Update before_script.msvc.sh
...
Does it blend?
7 years ago
Bret Curtis
209359bbc3
Try this on for size...
7 years ago
Bret Curtis
78a3f95ee4
Update before_script.msvc.sh
7 years ago
Bret Curtis
2bf0d598cf
Update before_script.msvc.sh
...
Wrap in quites
7 years ago
Bret Curtis
c474709127
Update before_script.msvc.sh
7 years ago
Bret Curtis
ca0f6fff4a
Update before_script.msvc.sh
7 years ago
Bret Curtis
dc48a46e50
Update before_script.msvc.sh
7 years ago
Bret Curtis
a6d6dd5995
updating for the nits
7 years ago
Bret Curtis
8811c7141a
Update before_script.msvc.sh
...
taking nits into account :)
7 years ago
Bret Curtis
c2ff30c4d7
correcting from GH/AV feedback, testing on GL.
7 years ago
Bret Curtis
a532aef935
Update before_script.msvc.sh
...
updating version check and correct indentation, wrap BOOST_SDK in "" to support dirs with spaces.
7 years ago
Bret Curtis
4c0e475092
Update before_script.msvc.sh
...
Use powershell trick with boost_temp so there is little chance of collision.
7 years ago
Bret Curtis
bccd83c656
Use 1.67
7 years ago
Bret Curtis
bc830a9c45
use boost_temp
7 years ago
Bret Curtis
63bbc77ee7
try using the powershell trick from AnyOldName3
7 years ago
Bret Curtis
3379eafd33
Update before_script.msvc.sh
7 years ago
Bret Curtis
3ceb9116de
Give pwd -W a try
7 years ago
Bret Curtis
c4a4111b2e
Update before_script.msvc.sh
7 years ago
Bret Curtis
fb6ad9faec
try %TMP% ?
7 years ago
Bret Curtis
4ad3d66629
try using just ${TMP}
7 years ago
Bret Curtis
8be52d228e
Update before_script.msvc.sh
...
small fixes
7 years ago
Bret Curtis
60ec340fa3
remove toolset_real, use just toolset, do proper comparison
7 years ago
Bret Curtis
71314f0c3a
Use boost 1.67 instead of 1.61
7 years ago
Bret Curtis
46575d8de7
Update before_script.msvc.sh
...
1.61 -> 1.67
7 years ago
Bret Curtis
660193ae1b
Update before_script.msvc.sh
...
This has working GL Win10 MSVC updates, should be cross-compatible with appveyor.
7 years ago
Bret Curtis
1c4363eaa6
Using SYSTEMDRIVE because TEMP apparently means something different in bash then to windows cmd.
7 years ago
Bret Curtis
7bf502dd02
Bash it out!
7 years ago
Bret Curtis
1061270ac0
Try using @TEMP@ instead of hard coding it.
7 years ago
Bret Curtis
45d77372a0
with 260 char path fixed, this should work.
7 years ago
Bret Curtis
f17426cbcd
give boost 1.67 a spin with msvc 14.1
7 years ago
Bret Curtis
bd602847b5
fix broken QT 5.7.0 link
7 years ago
Bret Curtis
59a4251a6a
try to extract boost higher up in dir, then move.
7 years ago
Bret Curtis
b6fc204dd3
be more aggressive about suppressing message boxes
7 years ago
Bret Curtis
f7e1083ba4
get more output from boost
7 years ago
Bret Curtis
e068ee3533
tell unzip to overwrite all files
7 years ago
Bret Curtis
308d78e3da
only download via curl if file on server is different than what is currently cached on VM.
7 years ago
Bret Curtis
ae4cb0c3ee
no need for macos_qt_formula since on osx there is no more qt4, just qt5
7 years ago
AnyOldName3
9df59720e4
Merge remote-tracking branch 'upstream/master' into osgshadow-test-vdsm
7 years ago
Nikolay Kasyanov
90ccf5b42b
[macOS, CI] Build using macOS 10.13 SDK
7 years ago
AnyOldName3
553094669b
Merge upstream/master (& fix merge conflicts)
7 years ago
Bret Curtis
937cbfa0a1
small commit to rigger AV
7 years ago
AnyOldName3
a1ab1dc7fe
Add easily understood error messages to the prebuild script instead of vague/silent failures.
7 years ago
Bret Curtis
d73c6ebe60
Merge pull request #1721 from akortunov/appveyor
...
AppVeyor: build with Release configuration
7 years ago
Andrei Kortunov
de2513653e
AppVeyor: build with Release configuration
7 years ago
AnyOldName3
759e6fb804
Merge remote-tracking branch 'refs/remotes/upstream/master'
7 years ago
Nikolay Kasyanov
ba3a02ad05
[macOS, CI] Do not upload a nightly if there's already one of the same commit
7 years ago
AnyOldName3
9ff31cc80d
Merge remote-tracking branch 'upstream/master' into osgshadow-test-vdsm
7 years ago
Alexander "Ananace" Olofsson
d05de8e411
Give boost the correct toolset for 2017
7 years ago
Alexander "Ananace" Olofsson
3bd8dc3ef6
Use the right boost version for Appveyor
7 years ago
Alexander "Ananace" Olofsson
bcfa2a13a6
Use the VS2017 packaging of Qt5 for Appveyor
7 years ago
Alexander "Ananace" Olofsson
ea6c73333b
Bumping Qt to 5.10 for Appveyor
7 years ago
AnyOldName3
44b2cf2b7f
Merge upstream.
7 years ago
bret curtis
4890ecd357
remove native GLESv* support, as it never worked; make things less complicated as result, fixed lighting.glsl to work with gl2es thanks to ptitSeb
7 years ago
Harald H
d3b623b5d3
http to https for supported urls ( #1625 )
...
* http to https for supported urls
* http to https
* http to https
* http to https
* http to https
* http to https
* http to https
* http to https
* http tp https
* http to https
* http to https
* http to https
* http to https
* http to https
* http to https
* http to https
* http to https
* some url fixes
* http to https
7 years ago
AnyOldName3
0e481a457e
Merge remote-tracking branch 'refs/remotes/upstream/master'
7 years ago
Alexander "Ace" Olofsson
50deed126b
Update SDL to 2.0.7
7 years ago
Alexander "Ace" Olofsson
04af200ae8
Downgrade MyGUI to 3.2.2 for Windows builds
7 years ago
AnyOldName3
ef8a7d1cb9
Merge remote-tracking branch 'upstream/master' into osgshadow-test-vdsm
7 years ago
Alexander "Ace" Olofsson
32bdd500af
Updating OSG packages to 3.4.1
7 years ago
AnyOldName3
147455626e
Merge OpenMW/master
7 years ago
AnyOldName3
20607bdcd9
Actually add shadow DLL under Windows automatically for real this time
7 years ago
AnyOldName3
c2cd338086
Add shadow DLL under Windows automatically
7 years ago
AnyOldName3
f8fe992dc0
Adjust CMake's run-time resource handling such that the Windows CI script does not have to copy these files
7 years ago
AnyOldName3
b94bbe00cb
Merge remote-tracking branch 'upstream/master' into osgshadow-test
7 years ago
Nikolay Kasyanov
c598f1313c
[macOS, CI] Update dependencies
...
The following changes are included:
- https://github.com/OpenMW/openmw-deps-mac/pull/37
- https://github.com/OpenMW/openmw-deps-mac/pull/38
7 years ago
AnyOldName3
f50063402d
Adjust shaders to support shadows
7 years ago
Nikolay Kasyanov
ffcdedced3
[macOS, CI] Use FTP URL from environment
...
This URL is also subject to change, moving to Travis settings.
8 years ago
scrawl
c23b75ab9a
Merge pull request #1339 from PlutonicOverkill/vs2017-support
...
Add Visual Studio 2017 support (Feature #3952 )
8 years ago
Nikolay Kasyanov
411b78562e
[macOS, CI] Use most recent dependencies
...
Includes a fix for https://bugs.openmw.org/issues/3904 .
8 years ago
PlutonicOverkill
0eb54fa96a
Remove TOOLSET and XP_TOOLSET
8 years ago
PlutonicOverkill
2d7689b978
Add Visual Studio 2017 support
...
The new VS2017 configuration uses all the same settings as the
VS2015 one, but uses a different generator.
CMake by default looks for Boost libraries based on the compiler
being used, but Boost only has binaries for VS2015, so a hack is
used to make sure it looks for the correct ones.
I don't know what TOOLSET and XP_TOOLSET are for but I left them
just in case.
8 years ago
tlmullis
fad760cc1d
msbuild was always defaulting to building the Debug configuration so it was impossible to build any other configurations with build.msvc.sh
8 years ago
Nikolay Kasyanov
016da1f10c
[macOS, CI] Use most recent dependencies
8 years ago
Nikolay Kasyanov
dd882b69c6
[macOS, CI] Use Release configuration
8 years ago
Nikolay Kasyanov
071419db4a
[macOS, CI] Enable OpenCS build and see what happens
8 years ago
Nikolay Kasyanov
c16506d07c
[OS X, CI] Use Xcode 8/macOS 10.12 SDK
8 years ago
Nikolay Kasyanov
6260e15852
[OS X] Temporarily disable OpenCS build on CI
8 years ago
Nikolay Kasyanov
231908d9cf
[OS X, CI] Use dependencies build against libc++
8 years ago
Bret Curtis
b6ee76b77b
Switch to latest Qt5 version which is C++11-compatible
8 years ago
Nikolay Kasyanov
224fcc9a4a
[macOS, CI] Fix dependency installation
8 years ago
Alexander "Ace" Olofsson
fd03c76e68
And apparently they're only doing zips now
8 years ago
Alexander "Ace" Olofsson
ae05c37a46
Update Windows CI scripts to use ffmpeg 3.2.4
8 years ago
Nikolay Kasyanov
e24cb0fe5d
[macOS, CI] Configure deployment of nightly builds to FTP
8 years ago
Nikolay Kasyanov
57c5ecfba8
[macOS, CI] Use most recent prebuilt dependencies
8 years ago
Nikolay Kasyanov
f1abc5d7cb
[macOS, CI] Use Release configuration
8 years ago
Alexander "Ace" Olofsson
cda83559aa
Update Bullet to 2.86
8 years ago
Nikolay Kasyanov
7bd95c8ce3
[macOS] Use https link to download dependencies on CI
8 years ago
Nikolay Kasyanov
07423f973f
[macOS] Use newer prebuilt dependencies on CI
8 years ago
Nikolay Kasyanov
a0990e5899
[macOS] Switch CI to Xcode 8.2
8 years ago
Nikolay Kasyanov
37c8a36dd8
[macOS] Parametrize Qt5 version used on CI
8 years ago
Nikolay Kasyanov
6d8d9e5dbc
[macOS] Take Qt prefix path from Homebrew for CI resilience
...
Recent CI failure was caused by path changed by Homebrew.
8 years ago
Nikolay Kasyanov
3adf4cb97f
Link OpenMW with libz on macOS
8 years ago
Nikolay Kasyanov
0115a3a874
Revert "Link OpenMW with libz on macOS"
...
This reverts commit 0c4dd05118
.
8 years ago
Nikolay Kasyanov
0c4dd05118
Link OpenMW with libz on macOS
8 years ago
Nikolay Kasyanov
cf2e59c983
[OS X] Use Qt 5.5 on CI
...
Newer Qt versions require C++11.
8 years ago
Alexander "Ace" Olofsson
123e57a65c
Include the OpenAL32.dll file into builds
8 years ago
scrawl
20da3bc240
Merge pull request #1037 from ace13/appveyor
...
Visual Studio 2015 support
8 years ago
Alexander "Ace" Olofsson
bcaf160eab
Add some missing Qt DLLs
8 years ago
Alexander "Ace" Olofsson
c93f7b90c5
Disable the version changing on AppVeyor
...
Apparently it breaks the build detail links on GitHub, not really
acceptable that.
8 years ago
Alexander "Ace" Olofsson
61d9729767
A final bit of script cleanup and caching
8 years ago
Alexander "Ace" Olofsson
6abc3c04bd
One letter wrong, oops
8 years ago
Alexander "Ace" Olofsson
d781846f53
Fix the /bigobj issue and some script cleanup
...
Surprisingly specific problem I must say, 32-bit vs2015 unity builds
8 years ago
Alexander "Ace" Olofsson
bc6aa86b8a
And escaping the printf input
8 years ago
Alexander "Ace" Olofsson
e47f4a9016
Missing STEP variable
8 years ago
Alexander "Ace" Olofsson
83de1f2de9
And use the correct OpenAL version
...
Should really have run these on a clean dir locally, but time
constraints...
8 years ago
Alexander "Ace" Olofsson
81a9258de9
Don't reset the APPVEYOR and CI variables
8 years ago
Alexander "Ace" Olofsson
dd5b6a46f5
Visual Studio 2015 support
8 years ago
Allofich
c89293770f
Link Clang paths
8 years ago
scrawl
b26478b860
Merge pull request #1028 from kpp/find_osg_plugins
...
Find osg_plugins
8 years ago
Roman Proskuryakov
95dc1258d6
Rewrites find_package for OpenSceneGraph plugins using LibFindMacros and osg_find_library
9 years ago
Roman Proskuryakov
9d51e1966f
Rename SDL_SDK -> SDL2DIR as it is said in FindSDL2 documentation
9 years ago
scrawl
dae4a8353a
Merge pull request #1024 from kpp/kpp_travis_improvements
...
Improve Travis config
9 years ago
Roman Proskuryakov
f4f81a14c9
Use Travis addons.apt.packages to install packages
9 years ago
scrawl
a44ba0e461
Merge pull request #966 from kpp/find_mygui
...
Find mygui
9 years ago
Roman Proskuryakov
4cffdb67d8
Uses case-sensitive MyGUI_* variables
9 years ago
Nikolay Kasyanov
bf0ec550da
OS X: specify minimum CMake version & remove redundant argument from CI script
9 years ago
AnyOldName3
57640b8161
Improve the MSVC prebuild script to allow compiled binaries to be run directly with no further modification
9 years ago
Roman Proskuryakov
3bcd23022a
Rewrites FindBullet using LibFindMacros handling version properly
9 years ago
Roman Proskuryakov
f23b551bfa
Rename FFMPEG_SDK -> FFMPEG_HOME as it is said in wiki
...
Fix #942
9 years ago
Roman Proskuryakov
4821abc8af
Fixes MSVC CI for FFmpeg
9 years ago
Nikolay Kasyanov
697b809c79
Reactivate OS X CI
9 years ago
scrawl
63665104bf
Remove optimization build flags on Travis-CI to speed up the build
9 years ago
Alexander "Ace" Olofsson
b3e985fca2
Merge branch 'master' of git://github.com/OpenMW/openmw into appveyor
9 years ago
Bret Curtis
10609ca5d1
how much memory in our vm?
9 years ago
Bret Curtis
339fbe23a7
remove precise cruft
9 years ago
Alexander "Ace" Olofsson
f422fe49f8
Slight improvement to the build setup
9 years ago
Alexander "Ace" Olofsson
fe241be26c
Merge branch 'master' of git://github.com/OpenMW/openmw into appveyor
9 years ago
Alexander "Ace" Olofsson
c8145a1b91
Let's see if we can't get AppVeyor to work
9 years ago
Alexander "Ace" Olofsson
c226d015ac
AppVeyor doesn't pass the platform env variable?
9 years ago
Alexander "Ace" Olofsson
f3187b17c8
Update OpenAL soft link, get qtbinpatcher to run
9 years ago
Bret Curtis
9d5e7b34c6
use ffmpeg from our repo
9 years ago
Bret Curtis
1e8eddc5b4
another try
9 years ago
Bret Curtis
bdfd1c217b
try using precise ffmpeg library instead of libav
9 years ago
scrawl
6bf3932279
Fix the check_tabs.sh script choking on QT generated UI files when doing an in-source build
9 years ago
Alexander "Ace" Olofsson
4ddb2feebb
Let's try building everything, see how far we get
9 years ago
Alexander "Ace" Olofsson
2e174fd1b5
Readd SDL2 main
9 years ago
Alexander "Ace" Olofsson
33175b44b8
Disable SDL main library
9 years ago
Alexander "Ace" Olofsson
fec08ef73e
Run unity build
9 years ago
Alexander "Ace" Olofsson
ead82742cd
Merge branch 'unity-fixes' into appveyor
9 years ago
scrawl
ab97a90c76
Add travis-ci script to detect tab characters in the code
9 years ago
Alexander "Ace" Olofsson
90af7060ea
Forgot an echo
10 years ago
Alexander "Ace" Olofsson
27a4af26ab
Cleaning up AppVeyor scripts
10 years ago
Scott Howard
3a0293480e
Update boost in travis-ci to fix build failure
10 years ago
Alexander "Ace" Olofsson
a831e89a43
Fix MyGUI include dir, and properly return error codes
10 years ago
Alexander "Ace" Olofsson
f8485211a1
Fix merge issue
10 years ago
Alexander "Ace" Olofsson
0a47104c53
Merge branch 'appveyor' of github.com:ace13/openmw into appveyor
10 years ago
Alexander "Ace" Olofsson
ad47fb7b51
Fix build script
10 years ago
Alexander "Ace" Olofsson
4319255d7b
Merge branch 'master' of git://github.com/OpenMW/openmw into appveyor
10 years ago
Alexander "Ace" Olofsson
24593d70ad
Merge remote-tracking branch 'upstream/appveyor' into appveyor-osg
10 years ago
Alexander "Ace" Olofsson
331d87d738
Bring over some more OSG changes to the Appveyor scripts, and properly use Qt
10 years ago
Alexander "Ace" Olofsson
b93cba9a69
Push messages properly
10 years ago
Alexander "Ace" Olofsson
9b09c7bbb0
Test the pre-existing Qt 5.4.1 install on Appveyor
10 years ago
Alexander "Ace" Olofsson
a1e29162bd
Bring Ogre pre-build script up to OSG standard
10 years ago
Alexander "Ace" Olofsson
c71bbd02bf
Finish up the OSG build scripts and configuration
...
Sadly it seems like Appveyor can't build OpenMW without timing out yet.
More build-time improvements are in order
10 years ago
Alexander "Ace" Olofsson
4f2cd17119
Let's get some OSG builds going
10 years ago
Alexander "Ace" Olofsson
c40f59179f
Merge remote-tracking branch 'scrawl/osg' into appveyor-osg
10 years ago
scrawl
30053140a1
Add cmake-data workaround to travis script
10 years ago
scrawl
7fe86a7fe0
Adjust travis config -ogre, -boost_wave, +osg
10 years ago
Alexander "Ace" Olofsson
e49cf2888d
Let's disable everything except OpenMW itself
...
Just to check if it's at all possible to use AppVeyor
10 years ago
Alexander "Ace" Olofsson
3425e9b1d1
And done.
...
Switched to a slight less shallow clone too, for better versioning
10 years ago
Alexander "Ace" Olofsson
108c2719a8
And yet I forgot about msbuild, should work now
10 years ago
Alexander "Ace" Olofsson
20b7c7b46c
Hopefully the last fixes, build should run
10 years ago
Alexander "Ace" Olofsson
ba9b21bc29
Moving dependencies to a better place
10 years ago
Alexander "Ace" Olofsson
0a1454d5ec
Final fixes, moving to Appveyor unstable for boost
10 years ago
Alexander "Ace" Olofsson
6993fbaece
And yet more issues slip past
10 years ago
Alexander "Ace" Olofsson
d7494128a2
More script fixes
10 years ago
Alexander "Ace" Olofsson
cd4042109a
Fix the script issues
10 years ago
Alexander "Ace" Olofsson
956234cde9
Add preliminary appveyor data
10 years ago
Scott Howard
154bb04a77
add scan-build to travis matrix
10 years ago
Nikolay Kasyanov
6b0ca73352
CI: use Qt from our homebrew tap
10 years ago
Nikolay Kasyanov
2fa39c4581
Do not install formulae that are already present on Travis instances, let's check if that would make Travis happy
10 years ago
Nikolay Kasyanov
8b2b54d89a
Travis CI: enable OS X build
...
Refactor platform-specific calls from .travis.yml to separate .sh scripts.
Test suite still needs to be enabled & tested for OS X though.
10 years ago