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
9 changes: 0 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,3 @@ jobs:
- run: mkdir dist -ea 0
- run: go build -o dist ./cmd/...
- run: go test -v ./mdtest
output-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make install
- run: make output-check
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/bin/
/dist/
/zed-sample-data/
node_modules/

.idea
Expand Down
12 changes: 1 addition & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ tidy:
go mod tidy
git diff --exit-code -- go.mod go.sum

SAMPLEDATA:=zed-sample-data/README.md

$(SAMPLEDATA):
git clone --depth=1 https://github.com/brimdata/zed-sample-data $(@D)

sampledata: $(SAMPLEDATA)

bin/minio: Makefile
@curl -o $@ --compressed --create-dirs \
https://dl.min.io/server/minio/release/$$(go env GOOS)-$$(go env GOARCH)/archive/minio.RELEASE.2022-05-04T07-45-27Z
Expand All @@ -59,9 +52,6 @@ test-run: build bin/minio
test-heavy: build
@PATH="$(CURDIR)/dist:$(PATH)" go test -tags=heavy ./mdtest

output-check: build $(SAMPLEDATA)
scripts/output-check.sh

build: $(PEG_DEP)
@mkdir -p dist
@go build -ldflags='$(LDFLAGS)' -o dist ./cmd/...
Expand Down Expand Up @@ -92,5 +82,5 @@ test-ci: fmt tidy vet test-generate test-unit test-system test-heavy
clean:
@rm -rf dist

.PHONY: fmt tidy vet test-unit test-system test-heavy sampledata test-ci
.PHONY: fmt tidy vet test-unit test-system test-heavy test-ci
.PHONY: build install clean generate test-generate
41 changes: 0 additions & 41 deletions scripts/output-check.sh

This file was deleted.