LP#2071656 fix for patron self registration form when related library… #73
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: Run Perl and C Unit Tests | |
| on: | |
| push: | |
| paths: | |
| - '.github/workflows/**' | |
| - 'Makefile.am' | |
| - 'configure.ac' | |
| - 'Open-ILS/src/c-apps/**' | |
| - 'Open-ILS/src/extras/install' | |
| - 'Open-ILS/src/Makefile.am' | |
| - 'Open-ILS/src/perlmods/**' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/**' | |
| - 'Makefile.am' | |
| - 'configure.ac' | |
| - 'Open-ILS/src/c-apps/**' | |
| - 'Open-ILS/src/extras/install' | |
| - 'Open-ILS/src/Makefile.am' | |
| - 'Open-ILS/src/perlmods/**' | |
| workflow_dispatch: | |
| jobs: | |
| make-check: | |
| name: Make Check | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - run: sudo apt-get update -y | |
| - name: Clone OpenSRF repository | |
| run: git clone --branch main git://git.evergreen-ils.org/OpenSRF.git | |
| - name: "OpenSRF: install dependencies" | |
| run: sudo make -f src/extras/Makefile.install ubuntu-jammy | |
| working-directory: ./OpenSRF | |
| - name: "OpenSRF: configure and make" | |
| run: autoreconf -i && ./configure --prefix=/openils --sysconfdir=/openils/conf && make | |
| working-directory: ./OpenSRF | |
| - name: "OpenSRF: make install" | |
| run: sudo make install | |
| working-directory: ./OpenSRF | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: Evergreen | |
| - name: "Evergreen: install dependencies" | |
| run: sudo make -f Open-ILS/src/extras/Makefile.install ubuntu-jammy && sudo make -f Open-ILS/src/extras/Makefile.install ubuntu-jammy-developer | |
| working-directory: ./Evergreen | |
| - name: "Evergreen: configure" | |
| run: autoreconf -i && PATH=/openils/bin:$PATH ./configure --prefix=/openils --sysconfdir=/openils/conf | |
| working-directory: ./Evergreen | |
| - name: "Evergreen: make check" | |
| run: make --silent check | |
| working-directory: ./Evergreen |