Skip to content

Commit f773c61

Browse files
committed
only build binary exe target
still trying
1 parent 192622a commit f773c61

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/binary-builds.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
if [[ "${{matrix.target}}" == *musl ]]; then
7070
sudo apt-get install musl-dev musl-tools
7171
else
72-
sudo apt-get install gcc-11-aarch64-linux-gnu binutils-aarch64-linux-gnu
72+
sudo apt-get install gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu
7373
fi
7474
- name: Install musl-gcc (fom compiling OpenSSL)
7575
if: matrix.target == 'x86_64-unknown-linux-musl'
@@ -98,10 +98,10 @@ jobs:
9898

9999
- name: Build (openssl-vendored)
100100
if: steps.is-openssl-vendored.outputs.enabled == 'true'
101-
run: cargo build --release --target ${{ matrix.target }} --features openssl-vendored
101+
run: cargo build --release --bin cpp-linter-cli --target ${{ matrix.target }} --features openssl-vendored
102102
- name: Build (no openssl-vendored)
103103
if: steps.is-openssl-vendored.outputs.enabled == 'false'
104-
run: cargo build --release --target ${{ matrix.target }}
104+
run: cargo build --release --bin cpp-linter-cli --target ${{ matrix.target }}
105105

106106
- name: Prepare artifacts [Windows]
107107
shell: bash

.github/workflows/python-packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: PyO3/maturin-action@v1
3131
with:
3232
target: ${{ matrix.target }}
33-
args: --release --out dist --find-interpreter
33+
args: --release --out dist --find-interpreter ${{ !startsWith(matrix.target, 'x86') && '--features openssl-vendored' }}
3434
manylinux: auto
3535
before-script-linux: |
3636
case "${{ matrix.target }}" in

0 commit comments

Comments
 (0)