feat: windows support #185
Workflow file for this run
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: main | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
include: | |
- os: windows-latest | |
install_dependencies: choco install make | |
shell: cmd | |
platforms: | |
- windows/amd64 | |
- os: ubuntu-latest | |
install_dependencies: sudo apt-get update && sudo apt-get install build-essential | |
shell: bash | |
platforms: | |
- linux/arm64 | |
- linux/amd64 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Dependencies | |
id: dependencies | |
run: ${{ matrix.install_dependencies }} | |
- name: Build | |
id: build | |
run: | | |
make dllama | |
make dllama-api | |
make funcs-test | |
make quants-test | |
make transformer-test | |
make llama2-tasks-test | |
make grok1-tasks-test | |
- name: funcs-test | |
run: ./funcs-test | |
- name: quants-test | |
run: ./quants-test | |
- name: transformer-test | |
run: ./transformer-test | |
- name: llama2-tasks-test | |
run: ./llama2-tasks-test | |
- name: grok1-tasks-test | |
run: ./grok1-tasks-test |