Skip to content

Commit 1947319

Browse files
committed
Merge remote-tracking branch 'origin/unstable' into deneb-doppelganger
2 parents f388e81 + e7ef2a3 commit 1947319

File tree

167 files changed

+19797
-1482
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+19797
-1482
lines changed

.github/workflows/docker.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,12 @@ jobs:
152152
- name: Dockerhub login
153153
run: |
154154
echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin
155-
- name: Build lcli dockerfile (with push)
156-
run: |
157-
docker build \
158-
--build-arg PORTABLE=true \
159-
--tag ${LCLI_IMAGE_NAME}:${VERSION}${VERSION_SUFFIX} \
160-
--file ./lcli/Dockerfile .
161-
docker push ${LCLI_IMAGE_NAME}:${VERSION}${VERSION_SUFFIX}
155+
- name: Build lcli and push
156+
uses: docker/build-push-action@v5
157+
with:
158+
build-args: |
159+
FEATURES=portable
160+
context: .
161+
push: true
162+
file: ./lcli/Dockerfile
163+
tags: ${{ env.LCLI_IMAGE_NAME }}:${{ env.VERSION }}${{ env.VERSION_SUFFIX }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- uses: KyleMayes/install-llvm-action@v1
8181
if: env.SELF_HOSTED_RUNNERS == 'false' && startsWith(matrix.arch, 'x86_64-windows')
8282
with:
83-
version: "15.0"
83+
version: "16.0"
8484
directory: ${{ runner.temp }}/llvm
8585
- name: Set LIBCLANG_PATH
8686
if: startsWith(matrix.arch, 'x86_64-windows')

.github/workflows/test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
# - uses: KyleMayes/install-llvm-action@v1
8787
# if: env.SELF_HOSTED_RUNNERS == 'false'
8888
# with:
89-
# version: "15.0"
89+
# version: "16.0"
9090
# directory: ${{ runner.temp }}/llvm
9191
- name: Set LIBCLANG_PATH
9292
run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV

0 commit comments

Comments
 (0)