Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Actions: run unit tests on MSYS2 #3817

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/testing-msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
run: pacman -S --noconfirm gcc libiconv-devel pkg-config python dos2unix

- if: matrix.msystem == 'MINGW32'
run: pacman -S --noconfirm mingw-w64-i686-toolchain
run: pacman -S --noconfirm mingw-w64-i686-toolchain python dos2unix

- if: matrix.msystem == 'MINGW64'
run: pacman -S --noconfirm mingw-w64-x86_64-toolchain
run: pacman -S --noconfirm mingw-w64-x86_64-toolchain python dos2unix

- run: ln -s /usr/bin/automake-1.16 /usr/bin/automake
- run: ln -s /usr/bin/aclocal-1.16 /usr/bin/aclocal

- run: git config --global core.autocrlf input
shell: bash
- uses: actions/checkout@v4
Expand All @@ -47,10 +47,13 @@ jobs:
- run: make install
- run: file /usr/bin/ctags
- run: ctags --version

- run: make check V=1

# FAILED: "./readtags.exe" -t "/d/a/ctags2/ctags2/Units/parser-asciidoc.r/utf8-asciidoc.d/expected.tags" - "@Ѐ–𐀀"
# The raw tag name was "@Ѐ–𐀀"
- if: matrix.msystem == 'MSYS'
run: make roundtrip

- run: make tmain
- run: make units