Skip to content

Commit

Permalink
Merge pull request #108 from privacysandbox/release-0.75.0
Browse files Browse the repository at this point in the history
Release 0.75.0
  • Loading branch information
pmeric authored Nov 21, 2024
2 parents e5e3aa2 + 47b4570 commit 4ccc5f6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## 0.75.0 (2024-11-21)


### Features

* Add gVisor dependencies to build-debian image

## 0.74.0 (2024-11-21)


Expand Down
14 changes: 14 additions & 0 deletions images/build-debian/install_apps
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,19 @@ function install_clang_tidy() {
ln -s "${installed_clang_tidy}" "${installed_dir}"/clang-tidy
}

# Minimal list of dependencies for building gVisor runsc from source.
# Derived from - https://github.com/google/gvisor/blob/4c89bb77d8bb65325288dc046ebd86122ebc6c05/images/default/Dockerfile
function install_gvisor_deps() {
declare -r arch="$1"
apt-get --quiet install -y --no-install-recommends \
crossbuild-essential-amd64="12.9*" \
crossbuild-essential-arm64="12.9*" \
libbpf-dev="1:0.5.0-*"
if [[ ${arch} == amd64 ]]; then
apt-get install -y --no-install-recommends libc6-dev-i386="2.35-*"
fi
}

function cleanup() {
apt-get --quiet autoremove -y
apt-get autoclean
Expand All @@ -160,6 +173,7 @@ install_misc "${BUILD_ARCH}"
install_clang
install_clang_tidy
install_golang "${BUILD_ARCH}"
install_gvisor_deps "${BUILD_ARCH}"
install_docker "${BUILD_ARCH}"
install_python # should run after other install_*
cleanup
2 changes: 1 addition & 1 deletion tests/data/hashes/build-debian
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bfc34df959f55f87ba7395cfe1dc46479a7fa6319ebfcebcf6c97770fe449046
240b6be7b685c614309e4eb852af37dabe3f808a8e17051d817ba60351ad2acf
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.74.0
0.75.0

0 comments on commit 4ccc5f6

Please sign in to comment.