Add pfInitialize() and pfInterpretText() #163
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: Make32 | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| env: | |
| # Customize the Make build type here (Release, Debug, RelWithDebInfo, etc.) | |
| BUILD_TYPE: Release | |
| jobs: | |
| build: | |
| name: Build 32-bit (PAGING=${{ matrix.demand_paging }}, FLOAT=${{ matrix.support_fp }}, CELL=${{ matrix.cell_size }}) | |
| # This uses a Unix Makefile and should run on Linux and Mac | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| demand_paging: [0, 1] | |
| support_fp: [0, 1] | |
| cell_size: [4, 8] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install MultiLib to support 32-bit builds | |
| run: sudo apt-get install gcc-multilib | |
| - name: Build and Test | |
| working-directory: ${{github.workspace}}/platforms/unix | |
| run: make test WIDTHOPT=-m32 ASAN=1 XCPPFLAGS="-DPF_SUPPORT_FP=${{ matrix.support_fp }} -DPF_DEMAND_PAGING=${{ matrix.demand_paging }} -DPF_CELL_SIZE=${{ matrix.cell_size }} -D_DEFAULT_SOURCE -D_GNU_SOURCE" | |