Draft: Testing dpu-sim no-overlay #899
Workflow file for this run
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 PR | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Docker Buildx | |
| run: | | |
| docker buildx create --use | |
| - name: Build Base Multiarch image | |
| run: | | |
| docker buildx build \ | |
| --file ./Containerfile \ | |
| --target base \ | |
| --platform linux/arm64,linux/amd64 \ | |
| . | |
| - name: Build RDMA Multiarch image | |
| run: | | |
| docker buildx build \ | |
| --file ./Containerfile \ | |
| --target rdma \ | |
| --platform linux/arm64,linux/amd64 \ | |
| . |