Skip to content

Commit c923f7c

Browse files
authored
Revert "ci: daggerize test and lint pipelines (#1534)" (#1717)
This reverts commit 3634bd9. # Conflicts: # .github/workflows/dagger-golangci-lint.yml # .github/workflows/go.yml # dagger.json # dagger/main.go
1 parent 1bcda80 commit c923f7c

10 files changed

+66
-344
lines changed

.github/workflows/dagger-golangci-lint.yml

-32
This file was deleted.

.github/workflows/go.yml

+66-61
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,66 @@
1-
---
2-
name: Go
3-
on:
4-
pull_request:
5-
push:
6-
branches:
7-
- main
8-
- "release-*"
9-
10-
concurrency:
11-
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12-
cancel-in-progress: true
13-
14-
# Minimal permissions to be inherited by any job that don't declare it's own permissions
15-
permissions:
16-
contents: read
17-
18-
jobs:
19-
20-
supportedVersions:
21-
name: Fetch supported Go versions
22-
runs-on: ubuntu-latest
23-
outputs:
24-
supported_versions: ${{ steps.matrix.outputs.supported_versions }}
25-
steps:
26-
- name: Checkout code
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28-
- name: Read supported_go_versions.txt
29-
id: matrix
30-
run: |
31-
versions=$(cat supported_go_versions.txt)
32-
matrix="[$(echo "$versions" | sed 's/\(.*\)/"\1"/' | paste -s -d,)]"
33-
echo "supported_versions=$matrix" >> $GITHUB_OUTPUT
34-
35-
test:
36-
name: Tests
37-
runs-on: ubuntu-latest
38-
needs: supportedVersions
39-
40-
strategy:
41-
matrix:
42-
go_version: ${{ fromJSON(needs.supportedVersions.outputs.supported_versions) }}
43-
44-
steps:
45-
- name: Checkout code
46-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
47-
48-
- name: Run tests and check license
49-
uses: dagger/dagger-for-github@847ae4458ef34fe9b5f566655957bde6d4891112 # v7.0.3
50-
with:
51-
version: "latest"
52-
verb: call
53-
args: -vvv --src . make --go-version ${{matrix.go_version}} --args 'check_license test'
54-
55-
- name: Run style and unused
56-
uses: dagger/dagger-for-github@847ae4458ef34fe9b5f566655957bde6d4891112 # v7.0.3
57-
if: ${{ matrix.go_version == '1.21' }}
58-
with:
59-
version: "latest"
60-
verb: call
61-
args: -vvv --src . make --args 'check_license test'
1+
---
2+
name: Go
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
- "release-*"
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12+
cancel-in-progress: true
13+
14+
# Minimal permissions to be inherited by any job that don't declare it's own permissions
15+
permissions:
16+
contents: read
17+
18+
jobs:
19+
supportedVersions:
20+
name: Fetch supported Go versions
21+
runs-on: ubuntu-latest
22+
outputs:
23+
supported_versions: ${{ steps.matrix.outputs.supported_versions }}
24+
steps:
25+
- name: Checkout code
26+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
- name: Read supported_go_versions.txt
28+
id: matrix
29+
run: |
30+
versions=$(cat supported_go_versions.txt)
31+
matrix="[$(echo "$versions" | sed 's/\(.*\)/"\1"/' | paste -s -d,)]"
32+
echo "supported_versions=$matrix" >> $GITHUB_OUTPUT
33+
34+
test:
35+
name: Tests
36+
runs-on: ubuntu-latest
37+
needs: supportedVersions
38+
39+
strategy:
40+
matrix:
41+
go_version: ${{ fromJSON(needs.supportedVersions.outputs.supported_versions) }}
42+
43+
steps:
44+
- name: Checkout code
45+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
46+
47+
- name: Set up Go ${{ matrix.go_version }}
48+
uses: actions/[email protected]
49+
with:
50+
go-version: ${{ matrix.go_version }}
51+
52+
- name: Cache Go modules
53+
id: cache
54+
uses: actions/cache@v4
55+
with:
56+
path: ~/go/pkg/mod
57+
key: v1-go${{ matrix.go_version }}
58+
59+
- name: Run tests and check license
60+
run: make check_license test
61+
env:
62+
CI: true
63+
64+
- name: Run style and unused
65+
if: ${{ matrix.go_version == '1.21' }}
66+
run: make style unused

.golangci.yml

-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ run:
44
skip-files:
55
# Skip autogenerated files.
66
- ^.*\.(pb|y)\.go$
7-
- dagger/dagger.gen.go
8-
skip-dirs:
9-
- dagger/internal
10-
117

128
output:
139
sort-results: true

Makefile

-13
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,6 @@ test: deps common-test
2020
.PHONY: test-short
2121
test-short: deps common-test-short
2222

23-
# Overriding Makefile.common check_license target to add
24-
# dagger paths
25-
.PHONY: common-check_license
26-
common-check_license:
27-
@echo ">> checking license header"
28-
@licRes=$$(for file in $$(find . -type f -iname '*.go' ! -path './vendor/*' ! -path './dagger/internal/*') ; do \
29-
awk 'NR<=3' $$file | grep -Eq "(Copyright|generated|GENERATED)" || echo $$file; \
30-
done); \
31-
if [ -n "$${licRes}" ]; then \
32-
echo "license header checking failed:"; echo "$${licRes}"; \
33-
exit 1; \
34-
fi
35-
3623
.PHONY: generate-go-collector-test-files
3724
file := supported_go_versions.txt
3825
VERSIONS := $(shell cat ${file})

dagger.json

-15
This file was deleted.

dagger/.gitattributes

-4
This file was deleted.

dagger/.gitignore

-4
This file was deleted.

dagger/go.mod

-40
This file was deleted.

dagger/go.sum

-87
This file was deleted.

0 commit comments

Comments
 (0)