Skip to content

Commit

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

Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
  • Loading branch information
zyv committed Oct 19, 2024
1 parent 4cb2ff6 commit 3b434a5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:

- name: Build default configuration
run: |
mkdir build-default
# Tests must be run as a non-root user
adduser --home "$(pwd)/build-default" --no-create-home --disabled-password test users
chown test:users -R $(pwd)
sudo -u test -i mkdir build-default && cd $_
sudo -u test -i \
../configure \
--prefix="$(pwd)/install" \
--prefix="$(pwd)/build-default/install" \
--enable-mclib \
--enable-aspell
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci-fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ jobs:

- name: Build default configuration
run: |
mkdir build-default
# Tests must be run as a non-root user
useradd -ms /bin/bash test
useradd --home "$(pwd)/build-default" test
chown test:test -R $(pwd)
sudo -u test mkdir build-default && cd $_
sudo -u test \
sudo -u test -i \
../configure \
--prefix="$(pwd)/install" \
--prefix="$(pwd)/build-default/install" \
--enable-mclib \
--enable-aspell
sudo -u test make -j$(nproc)
sudo -u test make check
sudo -u test 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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI
on: [ push, pull_request ]

jobs:
call-build-ubuntu:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
uses: ./.github/workflows/ci-ubuntu.yml
# call-build-ubuntu:
# if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
# uses: ./.github/workflows/ci-ubuntu.yml

call-build-fedora:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
Expand All @@ -14,6 +14,6 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
uses: ./.github/workflows/ci-alpine.yml

call-build-macos:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
uses: ./.github/workflows/ci-macos.yml
# call-build-macos:
# if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
# uses: ./.github/workflows/ci-macos.yml

0 comments on commit 3b434a5

Please sign in to comment.