diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2024-05-28 13:58:20 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2024-05-28 13:58:23 -0700 |
| commit | 4c007195663796ca0650f2cadddbd38284996b8a (patch) | |
| tree | e09ba2310f3b5d4323efd9f04272463451a78986 /.github/workflows | |
| parent | c564c4a0992d15c4b1a2c395061c9a95bc060767 (diff) | |
Allow failing test-annocheck
It causes flaky failures like this:
```
+ /usr/bin/docker build --rm -t ruby-fedora-annocheck-copy --build-arg=FILES=ruby -f ../src/tool/annocheck/Dockerfile-copy .
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
Install the buildx component to build images with BuildKit:
https://docs.docker.com/go/buildx/
Sending build context to Docker daemon 556.5MB
Step 1/6 : FROM docker.io/fedora:latest
toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit
```
It seems not that important to maintain the job for backports, so let's
allow failing it until we fix it in master branch.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/annocheck.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/annocheck.yml b/.github/workflows/annocheck.yml index aa87166254..25454f6abe 100644 --- a/.github/workflows/annocheck.yml +++ b/.github/workflows/annocheck.yml @@ -115,6 +115,7 @@ jobs: # CHECK_LEAKS: true - run: make test-annocheck + continue-on-error: true # toomanyrequests: You have reached your pull rate limit. - uses: ./.github/actions/slack with: |
