Skip to content

Commit a19fe87

Browse files
committed
wip 9/x
1 parent 312d2ef commit a19fe87

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/dev.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
fail-fast: false
5858
matrix:
5959
toolchain: ["gnu", "llvm"]
60-
arch: ["amd64", "x64"]
60+
arch: ["arm64", "x64"]
6161
bazelrc: [".bazelrc.absl", ".bazelrc.std"]
6262
include:
6363
- runner: ubuntu-22.04-arm
@@ -105,7 +105,7 @@ jobs:
105105
- runner: windows-11-arm
106106
arch: arm64
107107
- runner: windows-2022
108-
arch: x64
108+
arch: amd64
109109
runs-on: ${{ matrix.runner }}
110110
defaults:
111111
run:
@@ -158,12 +158,13 @@ jobs:
158158
- name: Report Datadog coverage
159159
run: |
160160
curl -L --fail "https://github.com/DataDog/datadog-ci/releases/latest/download/datadog-ci_linux-arm64" --output "/usr/local/bin/datadog-ci" && chmod +x /usr/local/bin/datadog-ci
161-
cp .coverage/filtered.info .coverage/filtered.lcov.info
162-
datadog-ci coverage upload .coverage/filtered.lcov.info
161+
cd .coverage
162+
cp filtered.info lcov.info
163+
datadog-ci coverage upload lcov.info
163164
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
164165
with:
165166
fail_ci_if_error: true
166-
file: .coverage/filtered.info
167+
files: .coverage/filtered.info
167168
upload_args: --disable-search
168169
token: ${{ secrets.CODECOV_TOKEN }}
169170
verbose: true

0 commit comments

Comments
 (0)