Skip to content

Commit

Permalink
experiment
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Feb 14, 2025
1 parent 2143db4 commit 35073f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 28 deletions.
2 changes: 2 additions & 0 deletions .github/json_matrices/build-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"ARCH": "arm64",
"TARGET": "aarch64-unknown-linux-gnu",
"PACKAGE_MANAGERS": ["pypi", "npm", "maven", "pkg_go_dev"],
"run": "always",
"languages": ["python", "node", "java", "go", "dotnet"]
},
{
Expand All @@ -25,6 +26,7 @@
"ARCH": "arm64",
"TARGET": "aarch64-apple-darwin",
"PACKAGE_MANAGERS": ["pypi", "npm", "maven", "pkg_go_dev"],
"run": "always",
"languages": ["python", "node", "java", "go", "dotnet"]
},
{
Expand Down
29 changes: 1 addition & 28 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
with:
language-name: go
# Run full test matrix if job started by cron or it was explictly specified by a person who triggered the workflow
run-full-matrix: true
run-full-matrix: ${{ github.event.inputs.full-matrix == 'true' || github.event_name == 'schedule' }}

test-go:
needs: get-matrices
Expand Down Expand Up @@ -98,33 +98,6 @@ jobs:
benchmarks/results/**
go/reports/**
lint:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: ./.github/workflows/lint-rust
with:
cargo-toml-folder: go
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: "1.22.0"
cache-dependency-path: go/go.sum

- name: Install protoc
uses: ./.github/workflows/install-rust-and-protoc
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install and run linters
working-directory: go
run: |
make install-dev-tools install-build-tools build lint-ci
get-containers:
runs-on: ubuntu-latest
if: ${{ github.event.inputs.full-matrix == 'true' || github.event_name == 'schedule' }}
Expand Down

0 comments on commit 35073f9

Please sign in to comment.