Skip to content

Commit

Permalink
- llvm -> 18.1.5
Browse files Browse the repository at this point in the history
- update pre-commit hooks: remove beautysh&prettier, replace with shell-fmt-go&yamlfmt
  • Loading branch information
lkeegan committed May 3, 2024
1 parent b21479a commit 72e862d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
name: Release Builds

on: push

env:
LLVM_VERSION: "18.1.4"

LLVM_VERSION: "18.1.5"
jobs:
build:
runs-on: ${{ matrix.os }}
Expand Down
25 changes: 16 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,25 @@ repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
exclude: '.*\.diff$'
- id: check-yaml
- id: trailing-whitespace

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
exclude: '.*\.diff$'
- id: check-added-large-files
- id: mixed-line-ending
exclude: '.*\.diff$'
- repo: https://github.com/rhysd/actionlint
rev: v1.6.27
hooks:
- id: actionlint
- repo: https://github.com/pecigonzalo/pre-commit-shfmt
rev: v2.2.0
hooks:
- id: prettier

- repo: https://github.com/lovesegfault/beautysh
rev: v6.2.1
- id: shell-fmt-go
- repo: https://github.com/google/yamlfmt
rev: v0.11.0
hooks:
- id: beautysh
- id: yamlfmt
ci:
autoupdate_schedule: quarterly
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e -x

BUILD_DIR=`pwd`
BUILD_DIR=$(pwd)

echo "LLVM_VERSION = $LLVM_VERSION"
echo "TARGET_TRIPLE = $TARGET_TRIPLE"
Expand Down

0 comments on commit 72e862d

Please sign in to comment.