Skip to content

Commit

Permalink
fixup! fixup! (canonicalize_pathname_custom): fix --disable-charset
Browse files Browse the repository at this point in the history
… build broken in 8f723b8

Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
  • Loading branch information
zyv committed Oct 19, 2024
1 parent cdf485d commit 24af797
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,20 @@ jobs:
- name: Build default configuration
run: |
# Tests must be run as a non-root user
mkdir build-default && chown guest:users build-default && cd $_
adduser --home "$(pwd)/build-default" --no-create-home --disabled-password test users
sudo -u guest -i PWD="$PWD" \
mkdir build-default && chown test:users build-default && cd $_
sudo -u test -i \
../configure \
--prefix="$(pwd)/install" \
--enable-mclib \
--enable-aspell \
--disable-nls
sudo -u guest -i PWD="$PWD" make -j$(nproc)
sudo -u guest -i PWD="$PWD" make check
sudo -u guest -i PWD="$PWD" make install
sudo -u test -i make -j$(nproc)
sudo -u test -i make check
sudo -u test -i make install
- uses: actions/upload-artifact@v4
if: failure()
Expand Down

0 comments on commit 24af797

Please sign in to comment.