Workflow file for this run
This file contains hidden or 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 |