Skip to content

Commit

Permalink
feat: support clang v20
Browse files Browse the repository at this point in the history
  • Loading branch information
shenxianpeng committed Feb 10, 2025
1 parent 665be88 commit 01a5b05
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Build amd64
name: Build

on:
push:
branches: [ master ]
paths:
- ".github/workflows/build-amd64.yml"
- ".github/workflows/build.yml"
pull_request:
branches: [ master ]
paths:
- ".github/workflows/build-amd64.yml"
- ".github/workflows/build.yml"
workflow_dispatch:

concurrency:
Expand All @@ -20,9 +20,11 @@ jobs:
strategy:
fail-fast: false
matrix:
clang-version: [ 19, 18, 17, 16, 15, 14, 13, 12.0.1, 12, 11, 10, 9, 8, 7 ]
clang-version: [ 20, 19, 18, 17, 16, 15, 14, 13, 12.0.1, 12, 11, 10, 9, 8, 7 ]
os: [ linux, macosx, windows ]
include:
- clang-version: 20
release: llvm-project-20.0.0.src
- clang-version: 19
release: llvm-project-19.1.0.src
- clang-version: 18
Expand Down Expand Up @@ -193,6 +195,8 @@ jobs:
uses: actions/download-artifact@v4
- name: list files
run: ls -laR .
- name: Delete all files over 2G # see issue 40
run: find . -type f -size +2G -exec rm -v {} \;
- name: draft release
uses: svenstaro/upload-release-action@v2
with:
Expand Down

0 comments on commit 01a5b05

Please sign in to comment.