Skip to content

Commit

Permalink
Update ansible to line up libstdc++ in run containers (#6795)
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou authored Feb 3, 2025
1 parent e377492 commit aeb1e77
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [6.0.0-dev17]

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

### Fixed

Container dependencies.

## [6.0.0-dev16]

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

Not all containers are available for this release, please see 6.0.0-dev15.

## [6.0.0-dev14]

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

Not all containers are available for this release, please see 6.0.0-dev15.

## [6.0.0-dev13]

[6.0.0-dev13]: https://github.com/microsoft/CCF/releases/tag/6.0.0-dev13
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
update_cache: yes
become: true

- name: Install debs
apt:
name: libstdc++6
update_cache: yes
become: true

- name: Get package url
shell:
cmd: |
Expand Down
1 change: 0 additions & 1 deletion getting_started/setup_vm/roles/ccf_run/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@
apt:
name: "{{ debs }}"
update_cache: yes
state: latest
become: yes
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ccf"
version = "6.0.0-dev16"
version = "6.0.0-dev17"
authors = [
{ name="CCF Team", email="[email protected]" },
]
Expand Down

0 comments on commit aeb1e77

Please sign in to comment.