Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! Ticket #4170: implement CI via Git…
Browse files Browse the repository at this point in the history
…Hub Actions

Signed-off-by: Yury V. Zaytsev <[email protected]>
  • Loading branch information
zyv committed Jun 3, 2024
1 parent 125a907 commit a583cf6
Showing 1 changed file with 40 additions and 1 deletion.
41 changes: 40 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: |
sudo apt-get install -y autoconf gettext autopoint libtool check indent
sudo apt-get install -y e2fslibs-dev libaspell-dev libglib2.0-dev libgpm-dev libncurses5-dev libslang2-dev libssh2-1-dev libx11-dev unzip
# TODO: PCRE
- name: Bootstrap build system
run: ./autogen.sh

Expand Down Expand Up @@ -43,3 +43,42 @@ jobs:
make indent
git ls-files --modified | wc -l
- name: Build ncurses & pcre configuration
run: |
tar -xjf $(ls build-distrib/mc-*.tar.bz2) --one-top-level=build-ncurses
cd build-ncurses
../configure \
--prefix="$(pwd)/install" \
--with-screen=ncurses \
--enable-werror
- name: Build minimal configuration
run: |
tar -xjf $(ls build-distrib/mc-*.tar.bz2) --one-top-level=build-minimal
cd build-minimal
../configure \
--prefix="$(pwd)/install" \
--disable-shared \
--disable-static \
--disable-maintainer-mode \
--disable-largefile \
--disable-nls \
--disable-rpath \
--disable-charset \
--disable-mclib \
--disable-assert \
--disable-aspell \
--disable-background \
--disable-vfs \
--disable-doxygen-doc \
--without-x \
--without-mmap \
--without-gpm-mouse \
--without-internal-edit \
--without-diff-viewer \
--without-subshell \
--enable-tests \
--enable-werror

0 comments on commit a583cf6

Please sign in to comment.