From 96ce4daefa79c373ab9fc7fae0ff533024daecc3 Mon Sep 17 00:00:00 2001 From: Ashesh Vidyut <134911583+absolutelightning@users.noreply.github.com> Date: Tue, 8 Aug 2023 12:42:03 +0530 Subject: [PATCH] Not using chmod - fixed integration test for Enterprise (#18401) * Not using chmod * checking icacls * Removed push --- .github/workflows/test-integrations-windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-integrations-windows.yml b/.github/workflows/test-integrations-windows.yml index f18b43e006..c3e977e97d 100644 --- a/.github/workflows/test-integrations-windows.yml +++ b/.github/workflows/test-integrations-windows.yml @@ -76,7 +76,7 @@ jobs: path: ${{ github.workspace }} - name: Restore mode+x - run: chmod +x ${{ github.workspace }}\consul.exe + run: icacls ${{ github.workspace }}\consul.exe /grant:rx Everyone:RX - name: Setup TcpDump Docker Image shell: bash @@ -1184,7 +1184,7 @@ jobs: if: ${{ !endsWith(github.repository, '-enterprise') }} run: | curl -L --fail "https://github.com/DataDog/datadog-ci/releases/download/v2.17.2/datadog-ci_win-x64.exe" --output "C:/datadog-ci" - chmod +x C:/datadog-ci + icacls C:/datadog-ci /grant:rx Everyone:RX - name: Upload coverage # do not run on forks