mirror of
https://github.com/janet-lang/janet
synced 2024-12-26 08:20:27 +00:00
Merge pull request #1141 from zevv/mingw-test
Add CI test for mingw/wine on linux
This commit is contained in:
commit
f2197fa2d8
17
.github/workflows/test.yml
vendored
17
.github/workflows/test.yml
vendored
@ -57,3 +57,20 @@ jobs:
|
|||||||
- name: Build the project
|
- name: Build the project
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: make -j CC=gcc
|
run: make -j CC=gcc
|
||||||
|
|
||||||
|
test-mingw-linux:
|
||||||
|
name: Build and test with Mingw on Linux + Wine
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout the repository
|
||||||
|
uses: actions/checkout@master
|
||||||
|
- name: Setup Mingw and wine
|
||||||
|
run: |
|
||||||
|
sudo dpkg --add-architecture i386
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install libstdc++6:i386 libgcc-s1:i386
|
||||||
|
sudo apt-get install gcc-mingw-w64-x86-64-win32 wine wine32 wine64
|
||||||
|
- name: Compile the project
|
||||||
|
run: make clean && make CC=x86_64-w64-mingw32-gcc LD=x86_64-w64-mingw32-gcc UNAME=MINGW RUN=wine
|
||||||
|
- name: Test the project
|
||||||
|
run: make test UNAME=MINGW RUN=wine
|
||||||
|
@ -50,6 +50,11 @@
|
|||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* needed for inet_pton and InitializeSRWLock */
|
||||||
|
#ifdef __MINGW32__
|
||||||
|
#define _WIN32_WINNT _WIN32_WINNT_VISTA
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Needed for realpath on linux, as well as pthread rwlocks. */
|
/* Needed for realpath on linux, as well as pthread rwlocks. */
|
||||||
#ifndef _XOPEN_SOURCE
|
#ifndef _XOPEN_SOURCE
|
||||||
#define _XOPEN_SOURCE 600
|
#define _XOPEN_SOURCE 600
|
||||||
|
Loading…
Reference in New Issue
Block a user