Skip to content

Commit

Permalink
Updated Travis script, updated instructions, changelog for 4.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mtehver committed Sep 29, 2021
1 parent 31ac6f2 commit 3ff7436
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Be patient - full build will take 1+ hours. You can speed it up by limiting arch
Download and set up boost library:

```
curl https://boostorg.jfrog.io/native/main/release/1.77.0/source/boost_1_77_0.zip
curl -o boost_1_77_0.zip -L https://sourceforge.net/projects/boost/files/boost/1.77.0/boost_1_77_0.zip/download
unzip boost_1_77_0.zip
ln -s boost_1_77_0 libs-external/boost
cd boost_1_77_0
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
CARTO Mobile SDK 4.4.2
-------------------

### Changes, fixes:

* Fixed style fallback version in 'CartoPackageManager' (when using 'startStyleDownload' method)
* Changed exception type when encoutering unsupported geometry in 'GeoJSONVectorTileDataSource'
* Minor iOS build script fixes


CARTO Mobile SDK 4.4.2RC1
-------------------

Expand Down
10 changes: 7 additions & 3 deletions scripts/travis/prerequisites.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ rvm get head
echo '---- Updating submodules ----'
git submodule update --init --remote --recursive

echo '---- Setting up boost ----'
cd libs-external/boost
echo '---- Downloading and setting up boost ----'
curl -o boost_1_77_0.zip -L https://sourceforge.net/projects/boost/files/boost/1.77.0/boost_1_77_0.zip/download
rm -rf boost_1_77_0
unzip boost_1_77_0.zip
ln -s boost_1_77_0 libs-external/boost
cd boost_1_77_0
./bootstrap.sh
./b2 headers
cd ../..
cd ..

echo '---- Downloading and installing CMake ----'
curl -o cmake-3.10.2.tar.gz -L https://cmake.org/files/v3.10/cmake-3.10.2.tar.gz
Expand Down

0 comments on commit 3ff7436

Please sign in to comment.