Skip to content

Commit

Permalink
test appveyor.yml, main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JoesCat committed Sep 12, 2024
1 parent 55d59f9 commit a4a5c49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
image: Visual Studio 2019
stack: python 3.12

platform:
- x64
branches:
Expand All @@ -17,7 +17,7 @@ matrix:
install:
- call %MBASH% "pacman --noconfirm -S --needed base-devel"
- call %MBASH% "pacman --noconfirm -S autoconf automake libtool"
- call %MBASH% "python -m pip install -U pip"
- call %MBASH% "pacman --noconfirm -S python-setuptools"
- call %MBASH% "python -m pip install setuptools wheel"
build_script:
- call %MBASH% "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; autoreconf -fiv && mkdir build && cd build && ../configure --enable-pylib && make check -j4 && make install"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
strategy:
matrix:
include: [
{ msystem: MINGW64, toolchain: mingw-w64-x86_64-toolchain },
{ msystem: MINGW32, toolchain: mingw-w64-i686-toolchain },
{ msystem: UCRT64, toolchain: mingw-w64-ucrt-x86_64-toolchain },
{ msystem: CLANG64, toolchain: mingw-w64-clang-x86_64-toolchain },
{ msystem: MINGW64, tools: mingw-w64-x86_64 },
{ msystem: MINGW32, tools: mingw-w64-i686 },
{ msystem: UCRT64, tools: mingw-w64-ucrt-x86_64 },
{ msystem: CLANG64, tools: mingw-w64-clang-x86_64 },
]
name: ${{ matrix.msystem }}
defaults:
Expand All @@ -66,13 +66,13 @@ jobs:
with:
msystem: ${{ matrix.msystem }}
update: true
install: autotools base-devel git ${{ matrix.toolchain }}
install: autotools base-devel git ${{matrix.tools}}-toolchain ${{matrix.tools}}-python-setuptools
- name: Create configure
run: |
autoreconf -i
automake
- name: Choose configure
run: ./configure
run: ./configure --enable-pylib
- name: Make library
run: make
- name: Test library
Expand Down

0 comments on commit a4a5c49

Please sign in to comment.