moonscript/.github/workflows/windows_exe.yml

29 lines
420 B
YAML
Raw Normal View History

2020-11-23 00:38:49 +00:00
name: "windows_exe"
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
2020-11-23 00:41:13 +00:00
- uses: actions/checkout@master
2020-11-23 00:59:19 +00:00
2020-11-23 00:48:18 +00:00
- uses: msys2/setup-msys2@v2
with:
2020-11-23 00:59:19 +00:00
install: gcc make curl
2020-11-23 00:48:18 +00:00
2020-11-23 01:01:02 +00:00
- name: Show GCC
run: gcc -v
2020-11-23 00:48:18 +00:00
2020-11-23 00:59:19 +00:00
- name: Setup Lua
2020-11-23 01:01:02 +00:00
run: |
2020-11-23 00:59:19 +00:00
curl -O https://www.lua.org/ftp/lua-5.1.5.tar.gz
tar -xZf lua-5.1.5.tar.gz
2020-11-23 01:01:02 +00:00
- name: List Files
2020-11-23 00:59:19 +00:00
run: Get-ChildItem
2020-11-23 00:48:18 +00:00