diff --git a/.github/workflows/ci-podman-ubuntu.yml b/.github/workflows/ci-podman-ubuntu.yml index e406f714be..8c5f863ca7 100644 --- a/.github/workflows/ci-podman-ubuntu.yml +++ b/.github/workflows/ci-podman-ubuntu.yml @@ -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 }} diff --git a/examples/grpc/Earthfile b/examples/grpc/Earthfile index 47fdf9b86e..319a059edd 100644 --- a/examples/grpc/Earthfile +++ b/examples/grpc/Earthfile @@ -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. # @@ -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 diff --git a/tests/warn-if-not-logged-in/Earthfile b/tests/warn-if-not-logged-in/Earthfile index c510ba93f3..519bd350cd 100644 --- a/tests/warn-if-not-logged-in/Earthfile +++ b/tests/warn-if-not-logged-in/Earthfile @@ -7,7 +7,7 @@ RUN echo "global: 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