Add PIP publication to README.md (#1518) #376
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: DefaultCache | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| DefaultCache: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Install dependencies" | |
| uses: ./.github/actions/InstallPackages | |
| with: | |
| install-llvm: true | |
| install-clang: true | |
| - name: "Build CIRCT to generate cache" | |
| uses: ./.github/actions/BuildCirct | |
| - name: "Build MLIR to generate cache" | |
| uses: ./.github/actions/BuildMlirDialect |