Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tune arm64 memory allocation and disable telemetry #652

Merged
merged 3 commits into from
Dec 28, 2023
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: 1 addition & 0 deletions .github/workflows/failpoint_test.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Failpoint test
on: [push, pull_request]
permissions: read-all
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tests-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
target: ${{ fromJSON(inputs.targets) }}
runs-on: ${{ inputs.runs-on }}
steps:
- name: Collect Workflow Telemetry
uses: catchpoint/workflow-telemetry-action@v1
- uses: actions/checkout@v4
- id: goversion
run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests_amd64.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Tests AMD64
permissions: read-all
on: [push, pull_request]
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/tests_arm64.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
---
name: Tests ARM64
permissions: read-all
on: [push, pull_request]
jobs:
test-linux-arm64:
uses: ./.github/workflows/tests-template.yml
with:
runs-on: actuated-arm64-4cpu-16gb
runs-on: actuated-arm64-4cpu-8gb
test-linux-arm64-race:
uses: ./.github/workflows/tests-template.yml
with:
runs-on: actuated-arm64-8cpu-16gb
runs-on: actuated-arm64-8cpu-8gb
targets: "['linux-unit-test-4-cpu-race']"
5 changes: 3 additions & 2 deletions .github/workflows/tests_windows.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Tests
on: [push, pull_request]
jobs:
Expand All @@ -14,7 +15,7 @@ jobs:
#
# ThreadSanitizer failed to allocate 0x000200000000 (8589934592) bytes at 0x0400c0000000 (error code: 1455)
#
#- windows-amd64-unit-test-4-cpu-race
# - windows-amd64-unit-test-4-cpu-race
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -41,7 +42,7 @@ jobs:
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0

coverage:
needs: ["test-windows" ]
needs: ["test-windows"]
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand Down
Loading