Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 109 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
name: "Build"

concurrency:
# for PR's cancel the running task, if another commit is pushed
group: ${{ github.workflow }} ${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

on:
# build on PR and push-to-main. This works for short-lived branches, and saves
# CPU cycles on duplicated tests.
# For long-lived branches that diverge, you'll want to run on all pushes, not
# just on push-to-main.
pull_request: {}
push:
branches:
- master

jobs:
test:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-20.04', 'macos-11.0']
luaVersion:
- "5.1"
- "5.2"
- "5.3"
- "5.4"
- "luajit"
- "luajit-openresty"
include:
- os: "macos-latest"
luaVersion: "5.4"
# On Windows builds:
# 'hishamhm/gh-actions-lua' will build the PuC Rio Lua versions using MSVC, and
# the LuaJIT version using MinGW/gcc. By running against both below, we test
# both toolchains.
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.1"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.2"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.3"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.4"
- os: "windows-latest"
toolchain: "mingw" # unused, other than for display in the UI
luaVersion: "luajit"

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup MSVC
# the 'hishamhm/gh-actions-lua' step requires msvc to build PuC Rio Lua
# versions on Windows (LuaJIT will be build using MinGW/gcc).
if: ${{ matrix.toolchain == 'msvc' }}
uses: ilammy/msvc-dev-cmd@v1

# - name: install Dependencies analyzer
# # action step used for troubleshooting if Windows dll's build incorrectly
# run: |
# $version = "1.11.1"
# echo "Installing Dependencies version: $version"
# $url = 'https://github.com/lucasg/Dependencies/releases/download/v' + $version + '/Dependencies_x64_Release.zip'
# $dest = Join-Path -Path $PWD -ChildPath ".dependencies"

# # Download and extract Dependencies
# New-Item -ItemType Directory -Path "$dest"
# Invoke-WebRequest -Uri $url -OutFile "$dest\dependencies.zip"
# Expand-Archive -Path "$dest\dependencies.zip" -DestinationPath "$dest"
# Remove-Item -Path "$dest\dependencies.zip"
# # dir "$dest"

# # Add Dependencies to PATH
# $env:PATH += ";$dest"
# echo $env:PATH

# # Verify Dependencies Installation
# dir "$dest\*.exe"
# dir ".\.dependencies\Dependencies.exe"
# .\.dependencies\Dependencies.exe -help

- uses: hishamhm/gh-actions-lua@master
with:
luaVersion: ${{ matrix.luaVersion }}

- uses: hishamhm/gh-actions-luarocks@master
with:
luarocksVersion: "3.11.0"

- name: dependencies
run: |
luarocks install busted

- name: install
run: |
luarocks remove --force luasystem
luarocks make

- name: test
run: |
busted --Xoutput "--color"
59 changes: 0 additions & 59 deletions .github/workflows/unix_build.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[![Unix build](https://img.shields.io/github/actions/workflow/status/lunarmodules/luasystem/unix_build.yml?branch=master&label=Unix%20build&logo=linux)](https://github.com/lunarmodules/luasystem/actions/workflows/unix_build.yml)
[![AppVeyor build status](https://img.shields.io/appveyor/build/Tieske/luasystem/master?label=Windows%20build&logo=windows)](https://ci.appveyor.com/project/Tieske/luasystem/branch/master)
[![Build](https://img.shields.io/github/actions/workflow/status/lunarmodules/luasystem/build.yml?branch=master&label=Unix%20build&logo=linux)](https://github.com/lunarmodules/luasystem/actions/workflows/build.yml)
[![Lint](https://github.com/lunarmodules/luasystem/workflows/Lint/badge.svg)](https://github.com/lunarmodules/luasystem/actions/workflows/lint.yml)
[![SemVer](https://img.shields.io/github/v/tag/lunarmodules/luasystem?color=brightgreen&label=SemVer&logo=semver&sort=semver)](CHANGELOG.md)

Expand Down
29 changes: 0 additions & 29 deletions appveyor.yml

This file was deleted.