mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-07-15 21:39:51 +02:00
Compare commits
8 Commits
dffc7e88c5
...
hjelmeland
Author | SHA1 | Date | |
---|---|---|---|
5c4fc93d5f | |||
43a97b7f00 | |||
64c9d531df | |||
0f37af645c | |||
9c6195ea62 | |||
708e50f8e6 | |||
0bc8c56043 | |||
ccef3bc4e2 |
17
.github/workflows/build.yml
vendored
17
.github/workflows/build.yml
vendored
@ -8,27 +8,32 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Test build on ${{ matrix.platform }}
|
name: Test ${{ matrix.luaVersion }} on ${{ matrix.platform }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
luaVersion: [ "5.4", "5.3", "5.2", "5.1", "luajit", "luajit-openresty" ]
|
luaVersion: [ "5.4", "5.3", "5.2", "5.1", "luajit", "luajit-openresty" ]
|
||||||
platform: [ "ubuntu-20.04", "macos-11" ] # "windows-2022" not supported by gh-actions-lua
|
platform: [ "ubuntu-22.04", "macos-11", "windows-2022" ]
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup ’msvc’
|
||||||
|
if: ${{ startsWith(matrix.platform, 'windows') && !startsWith(matrix.luaVersion, 'luajit') }}
|
||||||
|
uses: ilammy/msvc-dev-cmd@v1
|
||||||
- name: Setup ‘lua’
|
- name: Setup ‘lua’
|
||||||
uses: leafo/gh-actions-lua@v9
|
uses: leso-kn/gh-actions-lua@v11-staging
|
||||||
with:
|
with:
|
||||||
luaVersion: ${{ matrix.luaVersion }}
|
luaVersion: ${{ matrix.luaVersion }}
|
||||||
- name: Setup ‘luarocks’
|
- name: Setup ‘luarocks’
|
||||||
uses: leafo/gh-actions-luarocks@v4
|
uses: hishamhm/gh-actions-luarocks@master
|
||||||
- name: Make and install
|
- name: Make and install
|
||||||
run: |
|
run: |
|
||||||
export DEBUG=DEBUG
|
|
||||||
luarocks make -- luasocket-scm-3.rockspec
|
luarocks make -- luasocket-scm-3.rockspec
|
||||||
|
env:
|
||||||
|
DEBUG: DEBUG
|
||||||
- name: Run regression tests
|
- name: Run regression tests
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
cd test
|
cd test
|
||||||
lua hello.lua
|
lua hello.lua
|
||||||
|
6
.github/workflows/luacheck.yml
vendored
6
.github/workflows/luacheck.yml
vendored
@ -5,9 +5,9 @@ on: [push, pull_request]
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
luacheck:
|
luacheck:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
- name: Luacheck
|
- name: Luacheck
|
||||||
uses: lunarmodules/luacheck@v0
|
uses: lunarmodules/luacheck@v1
|
||||||
|
@ -58,7 +58,7 @@ int opt_meth_getoption(lua_State *L, p_opt opt, p_socket ps)
|
|||||||
/* binds socket to network interface */
|
/* binds socket to network interface */
|
||||||
int opt_set_bindtodevice(lua_State *L, p_socket ps)
|
int opt_set_bindtodevice(lua_State *L, p_socket ps)
|
||||||
{
|
{
|
||||||
#ifdef __APPLE__
|
#ifndef SO_BINDTODEVICE
|
||||||
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
|
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
|
||||||
#else
|
#else
|
||||||
const char *dev = luaL_checkstring(L, 3);
|
const char *dev = luaL_checkstring(L, 3);
|
||||||
@ -68,7 +68,7 @@ int opt_set_bindtodevice(lua_State *L, p_socket ps)
|
|||||||
|
|
||||||
int opt_get_bindtodevice(lua_State *L, p_socket ps)
|
int opt_get_bindtodevice(lua_State *L, p_socket ps)
|
||||||
{
|
{
|
||||||
#ifdef __APPLE__
|
#ifndef SO_BINDTODEVICE
|
||||||
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
|
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
|
||||||
#else
|
#else
|
||||||
char dev[IFNAMSIZ];
|
char dev[IFNAMSIZ];
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#define PIE_CONNREFUSED "connection refused"
|
#define PIE_CONNREFUSED "connection refused"
|
||||||
#define PIE_CONNABORTED "closed"
|
#define PIE_CONNABORTED "closed"
|
||||||
#define PIE_CONNRESET "closed"
|
#define PIE_CONNRESET "closed"
|
||||||
#define PIE_TIMEDOUT "timeout"
|
#define PIE_TIMEDOUT "connection timeout"
|
||||||
#define PIE_AGAIN "temporary failure in name resolution"
|
#define PIE_AGAIN "temporary failure in name resolution"
|
||||||
#define PIE_BADFLAGS "invalid value for ai_flags"
|
#define PIE_BADFLAGS "invalid value for ai_flags"
|
||||||
#define PIE_BADHINTS "invalid value for hints"
|
#define PIE_BADHINTS "invalid value for hints"
|
||||||
|
Reference in New Issue
Block a user