mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
30 lines
467 B
YAML
30 lines
467 B
YAML
name: "windows_exe"
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
install: gcc make curl
|
|
|
|
- name: Show GCC
|
|
run: gcc -v
|
|
|
|
- name: Setup Lua
|
|
run: |
|
|
curl -O https://www.lua.org/ftp/lua-5.1.5.tar.gz
|
|
tar -xZf lua-5.1.5.tar.gz
|
|
cd lua-5.1.5; make PLAT=mingw
|
|
|
|
- name: List Files
|
|
run: Get-ChildItem -Recurse
|
|
|
|
|