Merge pull request #44 from Qualytics/master #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build this project with gradle | |
on: | |
push: | |
jobs: | |
build-gradle-project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: openvenues/libpostal | |
path: libpostal | |
- name: Install libtool | |
run: | | |
cd libpostal | |
./bootstrap.sh | |
mkdir data_dir | |
./configure --datadir=`pwd`/data_dir MODEL=senzing | |
sudo make -j4 | |
sudo make install | |
sudo ldconfig | |
- uses: actions/checkout@v4 | |
with: | |
repository: Qualytics/jpostal | |
path: jpostal | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Run build with Gradle Wrapper | |
run: | | |
cd jpostal | |
./gradlew check |