Skip to content

Commit fe37844

Browse files
BjoernAtBoschMP91
andauthored
Conan 2 migration (eclipse-velocitas#128)
* Change base-image to v0.4 * Update workflows to v7.0.0 * Update devcontainer-setup to v3.0.0 * Update C++ SDK to v0.7.0 --------- Co-authored-by: Markus Petke <[email protected]>
1 parent 7776ee7 commit fe37844

33 files changed

+204
-175
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
2-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
2+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
33
#
44
# This program and the accompanying materials are made available under the
55
# terms of the Apache License, Version 2.0 which is available at
@@ -13,7 +13,7 @@
1313
#
1414
# SPDX-License-Identifier: Apache-2.0
1515

16-
FROM ghcr.io/eclipse-velocitas/devcontainer-base-images/cpp:v0.3
16+
FROM ghcr.io/eclipse-velocitas/devcontainer-base-images/cpp:v0.4
1717

1818
ARG REINSTALL_CMAKE_VERSION_FROM_SOURCE
1919
ENV REINSTALL_CMAKE_VERSION_FROM_SOURCE="${REINSTALL_CMAKE_VERSION_FROM_SOURCE:-none}"

.devcontainer/scripts/configure-codespaces.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2023-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2023-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/configure-proxies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/container-set.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/onCreateCommand.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/postStartCommand.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2024-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at
@@ -14,7 +14,9 @@
1414
#
1515
# SPDX-License-Identifier: Apache-2.0
1616

17-
.devcontainer/scripts/upgrade-cli.sh
17+
if [[ -z "${VELOCITAS_OFFLINE}" ]]; then
18+
.devcontainer/scripts/upgrade-cli.sh
19+
fi
1820

1921
# Call user initialization hook if present
2022
POST_START_USER_HOOK_PATH=.devcontainer/scripts/onPostStartUserHook.sh

.devcontainer/scripts/reinstall-cmake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2023-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2023-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/setup-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/setup-git.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/upgrade-cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2023-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2023-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

0 commit comments

Comments
 (0)