Skip to content

Commit

Permalink
CI: do not use cache
Browse files Browse the repository at this point in the history
Signed-off-by: Eryk Szpotanski <[email protected]>
  • Loading branch information
eszpotanski committed Jun 20, 2024
1 parent 3423016 commit e87d5ff
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ jobs:
- /usr/share/dotnet:/usr/share/dotnet
- /usr/local/lib/android:/usr/local/lib/android
- /opt/ghc:/opt/ghc
- /root/.cache:/root/.cache
- /__w/megaboom:/__w/megaboom
defaults:
run:
shell: bash
Expand All @@ -182,6 +184,11 @@ jobs:
rm -rf /opt/ghc/*
echo "After cleanup"
df -H
# Workaround for https://github.com/actions/runner/issues/863
- name: Override HOME env var
shell: bash
run: |
echo HOME=/root | sudo tee -a $GITHUB_ENV
- name: Check docker.sock
run: ls -l /var/run/docker.sock
- name: Install docker
Expand All @@ -192,6 +199,10 @@ jobs:
run: docker info
- name: Checkout bazel-orfs
uses: actions/checkout@v4
- name: CH
run: |
pwd
ls
- name: Install bazelisk as bazel
run: |
wget https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-linux-amd64 -O /usr/local/bin/bazel
Expand All @@ -206,4 +217,4 @@ jobs:
env:
SECRET_CACHE: ${{ secrets.CACHE_ADDRESS }}
run: |
bazel build --remote_cache=$SECRET_CACHE --google_credentials=/tmp/bazel-build-cred.json --remote_cache_compression=true BoomTile_synth
bazel build --subcommands --verbose_failures tag_array_64x184_place # --remote_cache=$SECRET_CACHE --google_credentials=/tmp/bazel-build-cred.json --remote_cache_compression=true
1 change: 1 addition & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,7 @@ digital_top_srams=[
'SKIP_REPORT_METRICS=1']
},
abstract_stage='cts',
debug_prints=True,
mock_area={
'meta_40x240':0.3,
'data_data_40x128':1,
Expand Down

0 comments on commit e87d5ff

Please sign in to comment.