ciabatta/.github/workflows/build-windows.yml

44 lines
968 B
YAML
Raw Normal View History

2023-07-28 11:47:06 +00:00
name: Windows
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
2023-09-06 21:20:00 +00:00
env:
CI: false
2023-07-28 11:47:06 +00:00
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
2023-07-28 11:57:42 +00:00
- name: Cache LLVM and Clang
id: cache-llvm
uses: actions/cache@v3
with:
path: |
C:/Program Files/LLVM
./llvm
2023-07-28 12:13:17 +00:00
key: llvm-15
2023-07-28 11:57:42 +00:00
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
2023-07-28 11:47:06 +00:00
with:
2023-07-28 12:16:35 +00:00
version: "15"
2023-07-28 11:57:42 +00:00
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
2023-07-28 11:47:06 +00:00
- name: Setup NASM
uses: ilammy/setup-nasm@v1
2023-07-28 12:00:43 +00:00
with:
from-source: false
2023-07-28 11:47:06 +00:00
- name: Set up Python
2023-09-06 21:11:05 +00:00
with:
2023-09-06 21:12:19 +00:00
python-version: '3.x'
2023-07-28 11:47:06 +00:00
uses: actions/setup-python@v4
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
2023-09-06 21:22:12 +00:00
shell: bash
run: ./build.py -m release -t tests/hello.c