Build and Test #98
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 and Test | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "15 15 * * 1" | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| image: | |
| - ubuntu:noble | |
| container: ${{ matrix.image }} | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Update APT and Install Cache Deps | |
| run: | | |
| apt-get -y -qq update | |
| apt-get -y -qq install \ | |
| libxml2-dev libldap2 libldap-dev libpq-dev libpq5 \ | |
| libmemcached-dev libmemcached-tools libcurl4-openssl-dev \ | |
| libcrypt-dev make libz-dev gobjc \ | |
| gnustep-make gnustep-base-runtime libgnustep-base-dev | |
| - name: Configure SOPE for Debug | |
| run: ./configure \ | |
| --with-gnustep \ | |
| --enable-debug \ | |
| --disable-strip \ | |
| --enable-xml \ | |
| --enable-postgresql \ | |
| --enable-openldap \ | |
| --with-ssl=ssl | |
| - name: Build SOPE | |
| run: make all |