Skip to content

Commit 72e862d

Browse files
committed
- llvm -> 18.1.5
- update pre-commit hooks: remove beautysh&prettier, replace with shell-fmt-go&yamlfmt
1 parent b21479a commit 72e862d

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

.github/workflows/release.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
name: Release Builds
2-
32
on: push
4-
53
env:
6-
LLVM_VERSION: "18.1.4"
7-
4+
LLVM_VERSION: "18.1.5"
85
jobs:
96
build:
107
runs-on: ${{ matrix.os }}

.pre-commit-config.yaml

+16-9
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,25 @@ repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
33
rev: v4.6.0
44
hooks:
5-
- id: check-yaml
65
- id: end-of-file-fixer
6+
exclude: '.*\.diff$'
7+
- id: check-yaml
78
- id: trailing-whitespace
8-
9-
- repo: https://github.com/pre-commit/mirrors-prettier
10-
rev: v4.0.0-alpha.8
9+
exclude: '.*\.diff$'
10+
- id: check-added-large-files
11+
- id: mixed-line-ending
12+
exclude: '.*\.diff$'
13+
- repo: https://github.com/rhysd/actionlint
14+
rev: v1.6.27
15+
hooks:
16+
- id: actionlint
17+
- repo: https://github.com/pecigonzalo/pre-commit-shfmt
18+
rev: v2.2.0
1119
hooks:
12-
- id: prettier
13-
14-
- repo: https://github.com/lovesegfault/beautysh
15-
rev: v6.2.1
20+
- id: shell-fmt-go
21+
- repo: https://github.com/google/yamlfmt
22+
rev: v0.11.0
1623
hooks:
17-
- id: beautysh
24+
- id: yamlfmt
1825
ci:
1926
autoupdate_schedule: quarterly

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e -x
44

5-
BUILD_DIR=`pwd`
5+
BUILD_DIR=$(pwd)
66

77
echo "LLVM_VERSION = $LLVM_VERSION"
88
echo "TARGET_TRIPLE = $TARGET_TRIPLE"

0 commit comments

Comments
 (0)