Skip to content

Commit aeb1e77

Browse files
authored
Update ansible to line up libstdc++ in run containers (#6795)
1 parent e377492 commit aeb1e77

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [6.0.0-dev17]
9+
10+
[6.0.0-dev17]: https://github.com/microsoft/CCF/releases/tag/6.0.0-dev17
11+
12+
### Fixed
13+
14+
Container dependencies.
15+
816
## [6.0.0-dev16]
917

1018
[6.0.0-dev16]: https://github.com/microsoft/CCF/releases/tag/6.0.0-dev16
@@ -22,14 +30,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2230
- All containers now include the correct version of libstdc++/libstdc++-dev, and the Debian package captures the runtime requirement as well.
2331
- RPMs for Azure Linux 3.0 are now included in releases.
2432

25-
Not all containers are available for this release, please see 6.0.0-dev15.
26-
2733
## [6.0.0-dev14]
2834

2935
[6.0.0-dev14]: https://github.com/microsoft/CCF/releases/tag/6.0.0-dev14
3036

31-
Not all containers are available for this release, please see 6.0.0-dev15.
32-
3337
## [6.0.0-dev13]
3438

3539
[6.0.0-dev13]: https://github.com/microsoft/CCF/releases/tag/6.0.0-dev13

getting_started/setup_vm/roles/ccf_install/tasks/deb_install.yml

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
update_cache: yes
99
become: true
1010

11+
- name: Install debs
12+
apt:
13+
name: libstdc++6
14+
update_cache: yes
15+
become: true
16+
1117
- name: Get package url
1218
shell:
1319
cmd: |

getting_started/setup_vm/roles/ccf_run/tasks/install.yml

-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@
1212
apt:
1313
name: "{{ debs }}"
1414
update_cache: yes
15-
state: latest
1615
become: yes

python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ccf"
7-
version = "6.0.0-dev16"
7+
version = "6.0.0-dev17"
88
authors = [
99
{ name="CCF Team", email="[email protected]" },
1010
]

0 commit comments

Comments
 (0)