From 8f28f5763baa0e4486c50f4067da1df846e0918f Mon Sep 17 00:00:00 2001 From: Eryk Szpotanski Date: Wed, 17 Apr 2024 15:52:29 +0200 Subject: [PATCH] WIP Signed-off-by: Eryk Szpotanski --- .github/scripts/build_local_target.sh | 6 +----- .github/workflows/ci.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/scripts/build_local_target.sh b/.github/scripts/build_local_target.sh index f3f73ee..7b59fdd 100755 --- a/.github/scripts/build_local_target.sh +++ b/.github/scripts/build_local_target.sh @@ -4,11 +4,7 @@ set -e target_name=${TARGET:-"tag_array_64x184"} if [[ -z "$STAGES" ]]; then - if [[ "$target_name" == L1MetadataArray_* ]]; then - STAGES=("synth_sdc" "synth" "floorplan" "place" "cts" "grt" "generate_abstract") - else - STAGES=("synth_sdc" "synth" "floorplan" "generate_abstract") - fi + STAGES=("synth_sdc" "synth" "floorplan" "place" "cts" "generate_abstract") else eval "STAGES=($STAGES)" fi diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 570e6c2..f9460d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,8 @@ jobs: name: Execute sample _make scripts runs-on: ubuntu-22.04 container: - image: ghcr.io/antmicro/bazel-orfs@sha256:78b4c15830d75e026dc2294b280cb5ff1200f6ee7902a714dca71fd61b5b2e4e + # image: ghcr.io/antmicro/bazel-orfs@sha256:78b4c15830d75e026dc2294b280cb5ff1200f6ee7902a714dca71fd61b5b2e4e + image: ghcr.io/antmicro/openroad-flow-scripts/ubuntu22.04:latest defaults: run: shell: bash @@ -82,7 +83,10 @@ jobs: - name: Override HOME env var shell: bash run: | - echo HOME=/root | sudo tee -a $GITHUB_ENV + echo HOME=/root | tee -a $GITHUB_ENV + ln -s /OpenROAD-flow-scripts /root/OpenROAD-flow-scripts + wget https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-linux-amd64 -O /usr/local/bin/bazel && \ + chmod +x /usr/local/bin/bazel - name: Print info run: | echo "USER: "$(whoami) @@ -100,10 +104,6 @@ jobs: env: TARGET: tag_array_64x184 run: .github/scripts/build_local_target.sh - - name: build local stage targets - lb_32x128 - env: - TARGET: lb_32x128 - run: .github/scripts/build_local_target.sh - name: build local stage targets - L1MetadataArray_test env: TARGET: L1MetadataArray_test