Skip to content

Commit

Permalink
don't freak out i am debugging we are safe
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn committed May 6, 2024
1 parent c04e739 commit c6fd57e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: CI
on:
workflow_dispatch: # Allow manual runs.
pull_request:
branches: [ 'main' ]
branches: ["main"]
push:
branches: [ 'main' ]
branches: ["main"]

permissions:
contents: read
Expand All @@ -19,12 +19,12 @@ jobs:
- name: Mount bazel caches
uses: actions/cache@v4
with:
path: |
~/.cache/bazel-repo
key: bazel-cache-deps-ci1-${{ github.sha }}
restore-keys: |
bazel-cache-deps-ci1-${{ github.sha }}
bazel-cache-deps-ci1-
path: |
~/.cache/bazel-repo
key: bazel-cache-deps-ci1-${{ github.sha }}
restore-keys: |
bazel-cache-deps-ci1-${{ github.sha }}
bazel-cache-deps-ci1-
- name: Free space
run: |
sudo apt-get remove -y '^dotnet-.*'
Expand All @@ -51,18 +51,18 @@ jobs:

ci-images:
name: CI image tests
runs-on: ubuntu-20.04 # most compatible with debian 11
runs-on: distroless-ci-large-ubuntu-20.04 # most compatible with debian 11
steps:
- uses: actions/checkout@v4
- name: Mount bazel caches
uses: actions/cache@v4
with:
path: |
~/.cache/bazel-repo
key: bazel-cache-deps-ci2-${{ github.sha }}
restore-keys: |
bazel-cache-deps-ci2-${{ github.sha }}
bazel-cache-deps-ci2-
path: |
~/.cache/bazel-repo
key: bazel-cache-deps-ci2-${{ github.sha }}
restore-keys: |
bazel-cache-deps-ci2-${{ github.sha }}
bazel-cache-deps-ci2-
- name: Free space
run: |
sudo apt-get remove -y '^dotnet-.*'
Expand Down
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_oci",
# ssha256 = "d8d3e64a814ff76f59b29467a8760112cbfe18e6b3d864e97011b072c805b7b0",
strip_prefix = "rules_oci-42be2648051e78a76cc400490150368a58fbec28",
url = "https://github.com/bazel-contrib/rules_oci/archive/42be2648051e78a76cc400490150368a58fbec28.tar.gz",
strip_prefix = "rules_oci-1f93e493dc5b620f7ebcaedf1c5766cd7f39a9b8",
url = "https://github.com/bazel-contrib/rules_oci/archive/1f93e493dc5b620f7ebcaedf1c5766cd7f39a9b8.tar.gz",
)

load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies")
Expand Down

0 comments on commit c6fd57e

Please sign in to comment.