Skip to content

CI: repository name must be lowercase #5

CI: repository name must be lowercase

CI: repository name must be lowercase #5

name: Test DependencyInstaller script
on:
schedule:
- cron: "0 8 * * SUN"
push:
paths:
- 'etc/DependencyInstaller.sh'
- 'etc/DockerHelper.sh'
- '.github/workflows/github-actions-cron-test-installer.yml'
- 'build_openroad.sh'
- 'env.sh'
- 'flow/Makefile'
pull_request:
paths:
- 'etc/DependencyInstaller.sh'
- 'etc/DockerHelper.sh'
- '.github/workflows/github-actions-cron-test-installer.yml'
- 'build_openroad.sh'
- 'env.sh'
- 'flow/Makefile'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
testInstaller:
strategy:
fail-fast: false
matrix:
os: ["ubuntu20.04", "ubuntu22.04", "centos7"]
runs-on: ubuntu-latest
env:
IMAGE: ghcr.io/antmicro/openroad-flow-scripts
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: recursive
- name: Network Setup
run: |
sudo apt-get update
sudo apt-get install -y bridge-utils
sudo pkill docker
sudo iptables -t nat -F
sudo ifconfig docker0 down
sudo brctl delbr docker0
sudo service docker restart
- name: Run installer
run: |
./etc/DockerHelper.sh create -target=dev -os=${{ matrix.os }}
- name: Build project
run: |
./etc/DockerHelper.sh create -target=builder -os=${{ matrix.os }}
- name: Test build
run: |
cmd="source ./env.sh ; yosys -help ; openroad -help ; make -C flow ;"
if [[ ${{ matrix.os }} == "centos7" ]]; then
cmd="source /opt/rh/devtoolset-8/enable; ${cmd}"
cmd="source /opt/rh/llvm-toolset-7.0/enable; ${cmd}"
cmd="source /opt/rh/rh-python38/enable; ${cmd}"
fi
docker run openroad/flow-${{ matrix.os }}-builder /bin/bash -c "${cmd}"
- name: Tag the image
run: |
docker tag openroad/flow-${{ matrix.os }}-builder ${{ env.IMAGE }}/${{ matrix.os }}
- name: Login to GitHub Container Registry (GHCR)
if: github.event_name != 'pull_request' && github.repository == 'antmicro/OpenROAD-flow-scripts'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: gha
password: ${{ github.token }}
- name: Push container image to GitHub Container Registry (GHCR)
if: github.event_name != 'pull_request' && github.repository == 'antmicro/OpenROAD-flow-scripts'
run: docker push ${{ env.IMAGE }}/${{ matrix.os }}