Skip to content

Commit

Permalink
feat: drop 32bit for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lxndr committed Nov 19, 2023
1 parent 266ff5d commit 8ac9249
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ jobs:
strategy:
matrix:
include:
- { sys: mingw32, env: i686 }
- { sys: mingw64, env: x86_64 }
- { sys: ucrt64, env: x86_64 }
defaults:
run:
shell: msys2 {0}
Expand All @@ -43,10 +42,10 @@ jobs:
vala:p
libgee:p
libadwaita:p
libadwaita:p
lua:p
geoip:p
imagemagick:p
inkscape:p
- name: Checkout
uses: actions/checkout@v4
- name: Setup meson project
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ jobs:
strategy:
matrix:
include:
- { sys: mingw32, env: i686 }
- { sys: mingw64, env: x86_64 }
- { sys: ucrt64, env: x86_64 }
defaults:
run:
shell: msys2 {0}
Expand All @@ -37,10 +36,10 @@ jobs:
vala:p
libgee:p
libadwaita:p
libadwaita:p
lua:p
geoip:p
imagemagick:p
inkscape:p
- name: Checkout
uses: actions/checkout@v4
- name: Setup meson project
Expand Down
12 changes: 6 additions & 6 deletions src/vapi/lua.vapi
Original file line number Diff line number Diff line change
Expand Up @@ -183,16 +183,16 @@ public class Lua {
public unowned string l_type_name (int index);

// standard library
[CCode (cname = "luaopen_base")]
[CCode (cheader_filename = "lualib.h", cname = "luaopen_base")]
public static int open_base (Lua vm);
[CCode (cname = "luaopen_math")]
[CCode (cheader_filename = "lualib.h", cname = "luaopen_math")]
public static int open_math (Lua vm);
[CCode (cname = "luaopen_package")]
[CCode (cheader_filename = "lualib.h", cname = "luaopen_package")]
public static int open_package (Lua vm);
[CCode (cname = "luaopen_string")]
[CCode (cheader_filename = "lualib.h", cname = "luaopen_string")]
public static int open_string (Lua vm);
[CCode (cname = "luaopen_table")]
[CCode (cheader_filename = "lualib.h", cname = "luaopen_table")]
public static int open_table (Lua vm);
[CCode (cname = "luaopen_debug")]
[CCode (cheader_filename = "lualib.h", cname = "luaopen_debug")]
public static int open_debug (Lua vm);
}

0 comments on commit 8ac9249

Please sign in to comment.