Skip to content

Commit 8a053fc

Browse files
author
HIT Platform Release Pipeline
committed
Release version 1.17.0
GitOrigin-RevId: 1fe572a3dd8adf63520e021a5f74dac2bcb9c81d
1 parent 1e6c398 commit 8a053fc

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
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.
44

5+
## 1.17.0 (2025-11-14)
6+
7+
8+
### GitHub
9+
10+
* **github:** Add scorecards for github actions
11+
12+
13+
### Features
14+
15+
* Handle GIT_DISCOVERY_ACROSS_FILESYSTEM
16+
517
## 1.16.0 (2025-11-13)
618

719

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/private-compute-infra-toolkit/devkit/badge)](https://scorecard.dev/viewer/?uri=github.com/private-compute-infra-toolkit/devkit)
44

5+
![Pre-Commit Scorecard](https://github.com/private-compute-infra-toolkit/devkit/actions/workflows/pre-commit.yaml/badge.svg)
6+
![Build Scorecard](https://github.com/private-compute-infra-toolkit/devkit/actions/workflows/build.yml/badge.svg)
7+
![Build-Debian Scorecard](https://github.com/private-compute-infra-toolkit/devkit/actions/workflows/build-debian.yml/badge.svg)
8+
![Build-RockyLinux Scorecard](https://github.com/private-compute-infra-toolkit/devkit/actions/workflows/build-rockylinux.yml/badge.svg)
9+
510
_Faster, Safer, Easier TEE Development._
611

712
DevKit is a tooling package built to accelerate development, improve code quality, and ensure

scripts/docker_run

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,17 @@ declare -a MOUNTS=(
100100
"${GIT_CONFIG}"
101101
)
102102

103+
declare -a ADDITIONAL_ENV=()
104+
103105
if git rev-parse --is-inside-work-tree &>/dev/null; then
104106
GIT_DIR="$(git rev-parse --absolute-git-dir)"
105107
readonly GIT_DIR
106108
if [[ "${GIT_DIR}" != "${PWD}"* ]]; then
107109
MOUNTS+=("${GIT_DIR}")
110+
ADDITIONAL_ENV+=("--env=GIT_DISCOVERY_ACROSS_FILESYSTEM=1")
108111
fi
109112
fi
110113

111-
declare -a ADDITIONAL_ENV=()
112-
113114
if [[ $NOBODY_GROUP_ID -gt 0 ]]; then
114115
ADDITIONAL_ENV+=("--env=NOBODY_GROUP_ID=${NOBODY_GROUP_ID}")
115116
fi

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.16.0
1+
1.17.0

0 commit comments

Comments
 (0)