Skip to content

Commit

Permalink
ci: Enable windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
leso-kn committed Oct 27, 2023
1 parent 45b6e61 commit 4836868
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,28 @@ jobs:
fail-fast: false
matrix:
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-20.04", "macos-11", "windows-2022" ]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup ‘lua’
uses: leafo/gh-actions-lua@v9
uses: leso-kn/gh-actions-lua@v11-staging
with:
luaVersion: ${{ matrix.luaVersion }}
- name: Setup ‘luarocks’
uses: leafo/gh-actions-luarocks@v4
uses: hishamhm/gh-actions-luarocks@master
- name: Make and install
run: |
export DEBUG=DEBUG
luarocks make -- luasocket-scm-3.rockspec
env:
DEBUG: DEBUG
- name: '[temp] Upload libraries'
uses: actions/upload-artifact@v3
with:
name: libs
path: |
socket
- name: Run regression tests
run: |
cd test
Expand All @@ -40,4 +47,3 @@ jobs:
lua mimetest.lua
lua urltest.lua
lua test_socket_error.lua
kill %1

0 comments on commit 4836868

Please sign in to comment.