Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/workflows/llvm-ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Build LLVM (matrix)

env:
DEFAULT_LLVM_VERSION: '15.0.7'
DEFAULT_LLVM_VERSION: '20.1.0'

on:
workflow_dispatch:
inputs:
llvm_version:
description: "e.g. 15.0.7, 21.1.1, etc"
description: "e.g. 15.0.7, 20.1.0, 21.1.1, etc"
required: false
pull_request:
branches:
Expand Down Expand Up @@ -44,6 +44,19 @@ jobs:
- name: Silence git default-branch hint
run: git config --global init.defaultBranch main

- name: Free Disk Space
if: runner.os == 'Linux'
run: |
df -h
pushd /opt/python
rm -Rf cp39-cp39 cp314-cp314 cp314-cp314t cp38-cp38 cp313-cp313t pp310-pypy310_pp73 pp311-pypy311_pp73
for cpversion in cp310 cp311 cp312 cp313; do {
if [[ "${cpversion}" != "cp310" ]]; then
rm -Rf ${cpversion}-${cpversion}
fi
} done
ls /opt/python/
df -h
# ---------- Prereqs ----------
- name: Install prerequisites (Linux)
if: runner.os == 'Linux'
Expand Down
Loading