Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv committed May 28, 2020
1 parent fbae611 commit 3bac1d0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -28,10 +28,13 @@ jobs:
- name: Install proj
if: ${{ matrix.features == '--features use-proj' }}
run: |
sudo apt-get install libcurl3 libcurl4 libsqlite3-dev
sudo apt-get install libsqlite3-dev
wget https://github.com/OSGeo/PROJ/releases/download/7.0.0/proj-7.0.0.tar.gz;
tar -xzvf proj-7.0.0.tar.gz;
pushd proj-7.0.0 && ./configure --prefix=/usr && make && sudo make install && popd;
cd proj-7.0.0
./configure --without-curl --prefix=/usr
make
sudo make install
- run: cargo build ${{ matrix.features }}
- run: cargo test ${{ matrix.features }}
geo_postgis:
Expand Down

0 comments on commit 3bac1d0

Please sign in to comment.