You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# on linux we build with musl which causes trouble with open-ssl. For now, just build max-pure there
100
112
# even though we could also build with `--features max-control,http-client-reqwest,gitoxide-core-blocking-client,gix-features/fast-sha1` for fast hashing.
101
113
# It's a TODO.
102
114
exclude:
103
-
- build: linux
115
+
- target: x86_64-unknown-linux-musl
104
116
feature: small
105
-
- build: linux
117
+
- target: x86_64-unknown-linux-musl
106
118
feature: lean
107
-
- build: linux
119
+
- target: x86_64-unknown-linux-musl
108
120
feature: max
109
-
- build: linux-arm
121
+
- target: arm-unknown-linux-gnueabihf
110
122
feature: small
111
-
- build: linux-arm
123
+
- target: arm-unknown-linux-gnueabihf
112
124
feature: lean
113
-
- build: linux-arm
125
+
- target: arm-unknown-linux-gnueabihf
114
126
feature: max
115
127
116
128
runs-on: ${{ matrix.os }}
117
129
118
130
env:
119
-
CARGO: cargo #Sometimes changes to `cross` later (such as when building linux-arm).
131
+
CARGO: cargo #On Linux, this will be changed to `cross` later.
0 commit comments