Skip to content

Commit 75600fe

Browse files
authored
Merge pull request #104 from elbywan/crystal-1.16.1
upgrade to crystal 1.16.1
2 parents 81eb754 + fbfe9a7 commit 75600fe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: brew update && brew install crystal || true
2525
- name: Build the binary
2626
run: |
27-
export LLVM_CONFIG="$(brew --prefix)/opt/llvm@19/bin/llvm-config"
27+
export LLVM_CONFIG="$(brew --prefix)/opt/llvm@20/bin/llvm-config"
2828
shards build crystalline --release --no-debug -Dpreview_mt --stats --progress --ignore-crystal-version
2929
- name: Upload a Build Artifact
3030
uses: actions/upload-artifact@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: shards install --production --ignore-crystal-version
2424
- name: Build the binary
2525
run: |
26-
export LLVM_CONFIG="$(brew --prefix)/opt/llvm@19/bin/llvm-config"
26+
export LLVM_CONFIG="$(brew --prefix)/opt/llvm@20/bin/llvm-config"
2727
shards build crystalline --release --no-debug -Dpreview_mt --stats --progress --ignore-crystal-version
2828
- name: Upload a Build Artifact
2929
uses: actions/upload-artifact@v4

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM crystallang/crystal:1.15.1-alpine
1+
FROM crystallang/crystal:1.16.1-alpine
22

33
WORKDIR /app
44

@@ -9,7 +9,7 @@ RUN apk add --update --no-cache --force-overwrite \
99
# Build crystalline.
1010
COPY . /app/
1111

12-
RUN git clone -b 1.15.1 --depth=1 https://github.com/crystal-lang/crystal \
12+
RUN git clone -b 1.16.1 --depth=1 https://github.com/crystal-lang/crystal \
1313
&& make -C crystal llvm_ext \
1414
&& CRYSTAL_PATH=crystal/src:lib shards build crystalline \
1515
--no-debug --progress --stats --production --static --release \

0 commit comments

Comments
 (0)