i386 testsuite fixes: correct get_pointer, restrict 64-bit-op tests #77
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: Builds | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| gcc: | |
| permissions: | |
| packages: read | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/dyninst/amd64/ubuntu-20.04:latest | |
| credentials: | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.github_token }} | |
| name: gcc | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Build | |
| run: | | |
| cmake . -DDyninst_DIR=/dyninst/install/lib/cmake/Dyninst | |
| cmake --build . |