Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-podman-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- '.github/CODEOWNERS'
- 'LICENSE'
pull_request:
branches: [ main ]
branches: [ main, get-ci-working ]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions examples/grpc/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WORKDIR /example-grpc
# which installs the various protoc tools required to generate the go, python,
# and ruby code.
#
# 2) https://github.com/earthly/earthly-example-proto-server
# 2) https://github.com/EarthBuild/earthly-example-proto-server
# This repository contains a server written in go along with an Earthfile
# that pulls in the auto-generated go code from repo 1.
#
Expand All @@ -37,7 +37,7 @@ WORKDIR /example-grpc
test:
FROM earthly/dind:alpine-3.19-docker-25.0.5-r0
WITH DOCKER \
--load kvserver:latest=github.com/earthly/earthly-example-proto-server:main+kvserver-docker \
--load kvserver:latest=github.com/EarthBuild/earthly-example-proto-server:main+kvserver-docker \
--load kv-py-client:latest=github.com/earthly/earthly-example-proto-python-client:main+kvclient-docker \
--load kv-rb-client:latest=github.com/earthly/earthly-example-proto-ruby-client:main+kv-ruby-client-docker \
--platform linux/amd64 # Ruby and Python(evidence suggests?) seem to have a hard time building in Docker on M1. https://github.com/grpc/grpc/issues/26664
Expand Down
2 changes: 1 addition & 1 deletion tests/warn-if-not-logged-in/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
disable_analytics: true" > /etc/.earthly/config.yml

# clear out any docker auth
RUN rm /root/.docker/config.json
RUN rm -f /root/.docker/config.json

test:
RUN mkdir sub
COPY hello.earth Earthfile
DO --pass-args +RUN_EARTHLY_ARGS --target=+hello --should_fail=maybe # there's a chance we actually get rate limited
RUN acbgrep 'Warning: you are not logged into registry-1.docker.io, you may experience rate-limitting when pulling images' earthly.output

Check failure on line 16 in tests/warn-if-not-logged-in/Earthfile

View workflow job for this annotation

GitHub Actions / docker-tests-no-qemu-group12 / +testing-gha-ubuntu-latest-docker

Error

The command RUN acbgrep 'Warning: you are not logged into registry-1.docker.io, you may experience rate-limitting when pulling images' earthly.output did not complete successfully. Exit code 1

Check failure on line 16 in tests/warn-if-not-logged-in/Earthfile

View workflow job for this annotation

GitHub Actions / podman-tests-no-qemu-group12 / +testing-gha-ubuntu-latest-podman

Error

The command RUN acbgrep 'Warning: you are not logged into registry-1.docker.io, you may experience rate-limitting when pulling images' earthly.output did not complete successfully. Exit code 1

RUN_EARTHLY_ARGS:
FUNCTION
Expand Down
Loading