Skip to content

Commit 1c8466d

Browse files
committed
more testing
1 parent d6b8e14 commit 1c8466d

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/dev-containers.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ jobs:
6969
node-version: '18.x'
7070
registry-url: 'https://npm.pkg.github.com'
7171
scope: '@microsoft'
72+
- name: Tools Info
73+
run: |
74+
docker info
75+
docker buildx version
76+
podman info
77+
podman buildx version
78+
continue-on-error: true
7279
- name: Install Dependencies
7380
run: |
7481
yarn install --frozen-lockfile

src/spec-configuration/containerFeaturesConfiguration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ function escapeQuotesForShell(input: string) {
291291

292292
export function getFeatureLayers(featuresConfig: FeaturesConfig, containerUser: string, remoteUser: string, isBuildah = false, useBuildKitBuildContexts = false, contentSourceRootPath = '/tmp/build-features') {
293293

294-
const useSELinuxLabel = process.platform === 'linux' && isBuildah;
294+
const useSELinuxLabel = 0 && process.platform === 'linux' && isBuildah;
295295
const builtinsEnvFile = `${path.posix.join(FEATURES_CONTAINER_TEMP_DEST_FOLDER, 'devcontainer-features.builtin.env')}`;
296296
let result = `RUN \\
297297
echo "_CONTAINER_USER_HOME=$(${getEntPasswdShellCommand(containerUser)} | cut -d: -f6)" >> ${builtinsEnvFile} && \\

0 commit comments

Comments
 (0)