|
17 | 17 | matrix:
|
18 | 18 | include:
|
19 | 19 | - { os: ubuntu-20.04, target: x86_64-unknown-linux-gnu, platform: linux-x64, cross: general }
|
20 |
| - # - { os: ubuntu-22.04, target: aarch64-unknown-linux-gnu, platform: linux-arm64, cross: aarch64 } |
| 20 | + - { os: ubuntu-22.04, target: aarch64-unknown-linux-gnu, platform: linux-arm64, cross: no_format } |
21 | 21 | - { os: ubuntu-20.04, target: x86_64-unknown-linux-musl, platform: linux-musl, cross: cross }
|
22 |
| - # - { os: ubuntu-22.04, target: x86_64-unknown-freebsd, platform: linux-bsd, cross: bsd } |
| 22 | + - { os: ubuntu-22.04, target: x86_64-unknown-freebsd, platform: linux-bsd, cross: no_format } |
23 | 23 | - { os: macos-latest, target: x86_64-apple-darwin, platform: darwin-x64, cross: general }
|
24 | 24 | - { os: macos-latest, target: aarch64-apple-darwin, platform: darwin-arm64, cross: general }
|
25 | 25 | - { os: windows-latest, target: x86_64-pc-windows-msvc, platform: win32-x64, cross: general }
|
|
41 | 41 | run: |
|
42 | 42 | cargo install cross
|
43 | 43 | cross build --release --target ${{ matrix.target }}
|
| 44 | + - name: Build - no_format |
| 45 | + if: ${{ matrix.cross == 'no_format' }} |
| 46 | + run: | |
| 47 | + cargo install cross |
| 48 | + cross build --release --target ${{ matrix.target }} --features no_format |
| 49 | + |
44 | 50 | - name: package-unix
|
45 | 51 | if: ${{ matrix.os != 'windows-latest' }}
|
46 | 52 | run: |
|
|
0 commit comments