Skip to content

Commit

Permalink
tests: add test for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Apr 28, 2024
1 parent ce13bf1 commit 7c6cc0a
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Test install fixture on windows

on:
pull_request:
push:
workflow_dispatch:

jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Install C/C++ Compiler
uses: rlalik/setup-cpp-compiler@master
with:
compiler: clang-latest

- name: Install MSVC Compiler Toolchain
uses: ilammy/msvc-dev-cmd@v1

- name: Install Lua
uses: leso-kn/gh-actions-lua@master
with:
luaVersion: "5.1"
- name: Install Luarocks
uses: mrcjkb/gh-actions-luarocks@master
# uses: hishamhm/gh-actions-luarocks@master
with:
luarocksVersion: "3.11.0"

- name: Install tree-sitter CLI
uses: baptiste0928/cargo-install@v3
with:
crate: tree-sitter-cli

- name: Install build dependencies
run: |
luarocks --local --lua-version=5.1 install luafilesystem --server='https://nvim-neorocks.github.io/rocks-binaries/'
luarocks --local --lua-version=5.1 make ./luarocks-build-treesitter-parser-scm-1.rockspec
- name: Install tree-sitter parser
run: |
luarocks --local --lua-version=5.1 install tree-sitter-haskell --dev
- name: Pack and create manifest
run: |
luarocks pack tree-sitter-haskell
luarocks-admin make-manifest --lua-version=5.1 .
dir
type manifest-5.1

0 comments on commit 7c6cc0a

Please sign in to comment.