temp: remove other runners for quicker testing, make artifacts unique #14
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: CI | |
on: [push, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os.host }} | |
strategy: | |
matrix: | |
os: | |
- host: ubuntu-20.04 | |
# - host: windows-2019 | |
# - host: macos-11 | |
steps: | |
- name: Install C/C++ Compiler | |
uses: rlalik/setup-cpp-compiler@master | |
with: | |
compiler: clang-latest | |
- name: Install Lua | |
uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: "5.1" | |
- name: Install Luarocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Install TOML Package | |
run: | | |
luarocks --local install toml | |
luarocks pack toml | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: output-${{ matrix.os.host }}.rock | |
path: "*.rock" |