Merge pull request #2 from aifoundry-org/et-builds #6
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 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - et # change back to `master` after upstreaming | |
| pull_request: | |
| branches: | |
| - et # change back to `master` after upstreaming | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build-reusable.yaml | |
| with: | |
| artifact-name: build | |
| target: '["rv64imfc-lp64f"]' | |
| os: '["ubuntu-24.04"]' | |
| mode: '["newlib"]' | |
| cmodel: '["medany"]' | |
| languages: '["c,c++"]' | |
| report: false | |
| test-sim: | |
| # disable until upstreamed | |
| if: ${{ false }} | |
| uses: ./.github/workflows/build-reusable.yaml | |
| with: | |
| artifact-name: sim | |
| os: '["ubuntu-24.04"]' | |
| mode: '["newlib"]' | |
| target: '["rv64gc-lp64d"]' | |
| sim: '["spike"]' | |
| build-multilib: | |
| if: ${{ false }} # Disable until multilib errors are triaged | |
| uses: ./.github/workflows/build-reusable.yaml | |
| with: | |
| artifact-name: multilib | |
| os: '["ubuntu-24.04"]' | |
| mode: '["newlib","linux"]' | |
| target: '["rv64gc-lp64d"]' | |