Skip to content

Commit fae1d7b

Browse files
authored
SDK image build fix: #21
1 parent 8112580 commit fae1d7b

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/cmake-build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Set environment
6868
run: |
6969
echo "KNP_BUILD_IMAGE_NAME=${{ vars.DOCKERHUB_LOGIN }}/knp-build-image:latest" >> $GITHUB_ENV
70-
echo "KNP_SDK_IMAGE_NAME=${{ vars.DOCKERHUB_LOGIN }}/knp-sdk-image:${{ steps.strings.outputs.KNP_IMAGE_VERSION }}" >> $GITHUB_ENV
70+
echo "KNP_SDK_IMAGE_NAME=${{ vars.DOCKERHUB_LOGIN }}/knp-sdk-image" >> $GITHUB_ENV
7171
7272
# Install support for non-x86 emulation in Docker via QEMU.
7373
# Platforms: linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x,
@@ -80,7 +80,7 @@ jobs:
8080
# docker run --rm --privileged multiarch/qemu-user-static --reset -p yes --credential yes
8181
- name: Show build parameters
8282
run: |
83-
echo "KNP_IMAGE_VERSION = ${{ env.KNP_IMAGE_VERSION }}"
83+
echo "KNP_IMAGE_VERSION = ${{ steps.strings.outputs.KNP_IMAGE_VERSION }}"
8484
echo "KNP_BUILD_IMAGE_NAME = ${{ env.KNP_BUILD_IMAGE_NAME }}"
8585
echo "KNP_SDK_IMAGE_NAME = ${{ env.KNP_SDK_IMAGE_NAME }}"
8686
- name: Configure
@@ -130,8 +130,8 @@ jobs:
130130
KNP_IMAGE_VERSION=${{ steps.strings.outputs.KNP_IMAGE_VERSION }}
131131
KNP_PACKAGES_DIR=${{ steps.strings.outputs.build-output-dir }}/_packages/
132132
tags: |
133-
${{ vars.DOCKERHUB_LOGIN }}/knp-sdk-image:${{ steps.strings.outputs.KNP_IMAGE_VERSION }}
134-
${{ vars.DOCKERHUB_LOGIN }}/knp-sdk-image:latest
133+
${{ env.KNP_SDK_IMAGE_NAME }}:${{ steps.strings.outputs.KNP_IMAGE_VERSION }}
134+
${{ env.KNP_SDK_IMAGE_NAME }}:latest
135135
timeout-minutes: 180
136136
continue-on-error: false
137137
- name: Upload deb packages
@@ -157,15 +157,15 @@ jobs:
157157

158158
# Set up a matrix to run:
159159
matrix:
160-
os: [macos-13, windows-2022]
160+
os: [macos-26, windows-2022]
161161
build_type: [Debug]
162162
c_compiler: [clang, cl]
163163
include:
164-
- os: macos-13
164+
- os: macos-26
165165
c_compiler: clang
166166
cpp_compiler: clang++
167167
boost_install_dir: /Users/runner/work/boost/knp
168-
boost_platform_version: 13
168+
boost_platform_version: 26
169169
boost_toolset: clang
170170
- os: windows-2022
171171
c_compiler: cl

0 commit comments

Comments
 (0)