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
1 change: 0 additions & 1 deletion .buildkite/tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ max_attempts=2
for target in \
+test-misc-group1 \
+test-misc-group2 \
+test-misc-group3 \
+test-ast-group1 \
+test-ast-group2 \
+test-ast-group3 \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-docker-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 ]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
10 changes: 0 additions & 10 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
util-linux

WORKDIR /earthly

Check failure on line 26 in Earthfile

View workflow job for this annotation

GitHub Actions / docker-examples-1 / +examples-1-ubuntu-latest-docker

Error

The command RUN go install golang.org/x/tools/cmd/goimports@latest did not complete successfully. Exit code 1
# deps downloads and caches all dependencies for earthly. When called directly,
# go.mod and go.sum will be updated locally.
deps:
Expand Down Expand Up @@ -271,12 +271,6 @@
BUILD ./ast+unit-test
BUILD ./util/deltautil+unit-test

# offline-test runs offline tests with network set to none
offline-test:
FROM +code
RUN --network=none (go test -run TestOffline ./cloud || kill $$) | tee test.log
RUN if grep 'no tests to run' test.log; then echo "error: no test found" && exit 1; fi

# submodule-decouple-check checks that go submodules within earthly do not
# depend on the core earthly project.
submodule-decouple-check:
Expand Down Expand Up @@ -685,16 +679,12 @@
test-misc:
BUILD +test-misc-group1
BUILD +test-misc-group2
BUILD +test-misc-group3
BUILD +test-ast

test-misc-group1:
BUILD +unit-test

test-misc-group2:
BUILD +offline-test

test-misc-group3:
BUILD +earthly-script-no-stdout

test-ast:
Expand Down
Loading