Skip to content

Commit f5cacde

Browse files
committed
Run macOS dist tasks on arm64 runners
1 parent 5fe469f commit f5cacde

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Diff for: .github/workflows/publish-go-tester-task.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -76,44 +76,55 @@ jobs:
7676
create-artifacts:
7777
needs: package-name-prefix
7878
name: Create artifact ${{ matrix.artifact.name }}
79-
runs-on: ubuntu-latest
79+
runs-on: ${{ matrix.artifact.runner }}
8080

8181
strategy:
8282
matrix:
8383
artifact:
8484
- task: dist:Windows_32bit
8585
path: "*Windows_32bit.zip"
8686
name: Windows_X86-32
87+
runner: ubuntu-latest
8788
- task: dist:Windows_64bit
8889
path: "*Windows_64bit.zip"
8990
name: Windows_X86-64
91+
runner: ubuntu-latest
9092
- task: dist:Linux_32bit
9193
path: "*Linux_32bit.tar.gz"
9294
name: Linux_X86-32
95+
runner: ubuntu-latest
9396
- task: dist:Linux_64bit
9497
path: "*Linux_64bit.tar.gz"
9598
name: Linux_X86-64
99+
runner: ubuntu-latest
96100
- task: dist:Linux_ARMv6
97101
path: "*Linux_ARMv6.tar.gz"
98102
name: Linux_ARMv6
103+
runner: ubuntu-latest
99104
- task: dist:Linux_ARMv7
100105
path: "*Linux_ARMv7.tar.gz"
101106
name: Linux_ARMv7
107+
runner: ubuntu-latest
102108
- task: dist:Linux_ARM64
103109
path: "*Linux_ARM64.tar.gz"
104110
name: Linux_ARM64
111+
runner: ubuntu-latest
105112
- task: dist:macOS_64bit
106113
path: "*macOS_64bit.tar.gz"
107114
name: macOS_64
115+
runner: ubuntu-latest-arm
108116
- task: dist:macOS_ARM64
109117
path: "*macOS_ARM64.tar.gz"
110118
name: macOS_ARM64
119+
runner: ubuntu-latest-arm
111120
- task: protoc:collect
112121
path: "*_proto.zip"
113122
name: rpc-protocol-files
123+
runner: ubuntu-latest
114124
- task: dist:jsonschema
115125
path: "*configuration.schema.json"
116126
name: configuration-schema
127+
runner: ubuntu-latest
117128

118129
steps:
119130
- name: Checkout repository

0 commit comments

Comments
 (0)