Skip to content

Commit

Permalink
GitHub Actions: run unit tests on MSYS2
Browse files Browse the repository at this point in the history
Signed-off-by: leleliu008 <leleliu008@gmail.com>
  • Loading branch information
leleliu008 committed Sep 15, 2023
1 parent 2615f4c commit d3a6e78
Showing 1 changed file with 8 additions and 5 deletions.
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

0 comments on commit d3a6e78

Please sign in to comment.