From fe4073569ade7fde531891a9f35b853f9cc65e2e Mon Sep 17 00:00:00 2001 From: AkshayK Date: Tue, 3 Sep 2024 01:29:21 -0400 Subject: [PATCH] test: test dnd --- .devcontainer/devcontainer.json | 5 ++--- .github/workflows/ci.yml | 6 ++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index a076ec2..0717826 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -20,14 +20,13 @@ } }, - "remoteUser": "root", + "remoteUser": "vscode", "features": { "git": "os-provided", "python": "os-provided", "ghcr.io/devcontainers/features/docker-in-docker:2": { "version": "latest", - "moby": true, - "dockerDashComposeVersion": "v2" + "moby": true } }, "containerEnv": { diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4e885a..a51647e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,10 +54,8 @@ jobs: - name: Build ${{ matrix.build-type }} with sanitizers set ${{ matrix.sanitizers }} run: cmake --build --preset ci --config ${{ matrix.build-type }} -j $(nproc) - #- name: Test ${{ matrix.build-type }} with sanitizers set ${{ matrix.sanitizers }} - # run: | - # cmake --preset ci - # ctest --preset ci --build-config ${{ matrix.build-type }} + - name: Test ${{ matrix.build-type }} with sanitizers set ${{ matrix.sanitizers }} + run: ctest --preset ci --build-config ${{ matrix.build-type }} test: needs: build strategy: