Merge pull request #125 from C3pa/fix-124 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
lua: ["5.1.5", "5.2.4", "5.3.5", "luajit"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Lua (not LuaJIT) | |
uses: leafo/gh-actions-lua@v10 | |
if: ${{ matrix.lua != 'luajit' }} | |
with: | |
luaVersion: ${{ matrix.lua }} | |
# leafo/gh-actions-lua does not use latest LuaJIT, so do it ourself. | |
- name: Checkout Latest LuaJIT | |
if: ${{ matrix.lua == 'luajit' }} | |
uses: actions/checkout@v3 | |
with: | |
repository: LuaJIT/LuaJIT | |
path: .lua-build | |
- name: Compile LuaJIT | |
if: ${{ matrix.lua == 'luajit' }} | |
working-directory: .lua-build | |
run: make -j$(nproc) install PREFIX=$GITHUB_WORKSPACE/.lua | |
- name: Symlink LuaJIT | |
if: ${{ matrix.lua == 'luajit' }} | |
working-directory: .lua/bin | |
run: ln -s luajit-2.1.0-beta3 lua && ln -s luajit-2.1.0-beta3 luajit | |
- name: List All Files in .lua | |
run: find .lua -name '*' | |
- name: Test Lua Interpreter | |
run: .lua/bin/lua -v | |
- name: Setup LuaRocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Install Busted | |
run: luarocks install busted | |
- name: Run Tests | |
run: busted specs | |
gh-pages: | |
name: Commit to gh-pages Branch | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get LuaJIT | |
run: sudo apt-get install -y luajit curl | |
- name: Checkout gh-pages | |
uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
fetch-depth: 0 | |
- name: Checkout Inside | |
uses: actions/checkout@v3 | |
with: | |
path: generator/api | |
- name: Generate Page | |
run: cd generator && luajit html-generator.lua | |
- name: Move Index | |
run: mv -f generator/index.html index.html | |
- name: Generate JSON | |
run: cd generator && luajit json-generator.lua | |
- name: Add and Commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: index.html love-api.json | |
default_author: github_actions | |
branch: gh-pages | |
message: 'Build ${{ github.sha }}' | |
push: true |