CI #696
This file contains 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
on: | |
workflow_dispatch: | |
pull_request: | |
schedule: | |
- cron: '0 8 * * *' | |
name: 'CI' | |
defaults: | |
run: | |
shell: bash | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
docker_image: | |
uses: siliconcompiler/siliconcompiler/.github/workflows/docker_image.yml@main | |
with: | |
tool: 'tools' | |
flat: | |
name: 'flat' | |
needs: docker_image | |
timeout-minutes: 180 | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ needs.docker_image.outputs.sc_tool }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: siliconcompiler/siliconcompiler | |
path: siliconcompiler | |
- run: apt install python3-venv | |
- name: Run test | |
run: | | |
python3 -m venv ./clean_env --clear | |
source ./clean_env/bin/activate | |
echo $VIRTUAL_ENV | |
pip3 install -r python-requirements.txt | |
pip3 install ./siliconcompiler | |
./make.py --top-flat | |
- name: Upload image artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: flat | |
path: build/zerosoc/job0/zerosoc.png | |
hierarchical: | |
name: 'hierarchical' | |
needs: docker_image | |
timeout-minutes: 180 | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ needs.docker_image.outputs.sc_tool }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: siliconcompiler/siliconcompiler | |
path: siliconcompiler | |
- run: apt install python3-venv | |
- name: Run test | |
run: | | |
python3 -m venv ./clean_env --clear | |
source ./clean_env/bin/activate | |
echo $VIRTUAL_ENV | |
pip3 install -r python-requirements.txt | |
pip3 install ./siliconcompiler | |
./make.py --core-only | |
./make.py --top-only | |
- name: Upload image artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: hierarchical | |
path: | | |
build/zerosoc_core/job0/zerosoc_core.png | |
build/zerosoc_top/job0/zerosoc_top.png |