diff options
| author | lbartoletti <lbartoletti@users.noreply.github.com> | 2020-01-24 09:28:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-24 09:28:56 +0100 |
| commit | c20c27424eb67457c3846c789296eacde234d01a (patch) | |
| tree | 430cc6906119f13137562c51b5bc6db72a1484e2 | |
| parent | e16a24ab397142ce23fe1e8824fce624fe5fdb42 (diff) | |
| download | PROJ-c20c27424eb67457c3846c789296eacde234d01a.tar.gz PROJ-c20c27424eb67457c3846c789296eacde234d01a.zip | |
Update .cirrus.yml
- Use latest FreeBSD 12 version
- remove useless pkg (wget -> native fetch ; unzip -> tar)
- "speed up" with 4 cpus
| -rw-r--r-- | .cirrus.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 4f140e72..0a2cb3cb 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -3,23 +3,24 @@ task: name: FreeBSD freebsd_instance: + cpu: 4 matrix: - image: freebsd-12-0-release-amd64 + image: freebsd-12-1-release-amd64 # image: freebsd-11-2-release-amd64 # image: freebsd-10-4-release-amd64 env: CIRRUS_CLONE_DEPTH: 1 - MAKE_FLAGS: -j 2 + MAKE_FLAGS: -j 4 cache: folder: $HOME/.ccache pkginstall_script: - - pkg install -y autoconf automake libtool pkgconf sqlite3 tiff wget unzip ccache gmake + - pkg install -y autoconf automake libtool pkgconf sqlite3 tiff ccache gmake download_grid_script: - - wget https://download.osgeo.org/proj/proj-datumgrid-1.8.zip - - (cd data && unzip -o ../proj-datumgrid-1.8.zip) + - fetch https://download.osgeo.org/proj/proj-datumgrid-1.8.zip + - (cd data && tar xvf ../proj-datumgrid-1.8.zip) configure_script: - ./autogen.sh - CC="ccache cc" CXX="ccache c++" ./configure --disable-static |
