Merge pull request #1432 from JexAmro/fix-bvxor-symbolic-optimization #1237
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: Docker Image CI | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set Timestamp Variable | |
| run: echo "TIMESTAMP=$(date +%s)" >> $GITHUB_ENV | |
| - name: Build the Docker image | |
| run: docker build . --file Dockerfile --tag triton-docker:$TIMESTAMP | |
| - name: Run test cases | |
| run: docker run --entrypoint /bin/bash --rm triton-docker:$TIMESTAMP -c 'ctest --test-dir /tmp/triton-build/ --output-on-failure' |