From 3b576c6a471a77dfebf021017d5aed20a56f56bb Mon Sep 17 00:00:00 2001 From: "SAITO-PC-3\\saito.k" Date: Fri, 9 Aug 2024 11:36:06 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=91=E3=82=A4=E3=83=97=E3=83=A9=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E3=81=AEYaml=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- azure-pipelines-staging.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines-staging.yml b/azure-pipelines-staging.yml index 042a731..c3ccb5b 100644 --- a/azure-pipelines-staging.yml +++ b/azure-pipelines-staging.yml @@ -43,11 +43,11 @@ jobs: targetType: inline workingDirectory: dictation_server/.devcontainer script: | - docker-compose -f pipeline-docker-compose.yml build - docker-compose -f pipeline-docker-compose.yml up -d - docker-compose exec -T dictation_server sudo npm ci - docker-compose exec -T dictation_server sudo npm run migrate:up:test - docker-compose exec -T dictation_server sudo npm run test + /usr/local/bin/docker-compose -f pipeline-docker-compose.yml build + /usr/local/bin/docker-compose -f pipeline-docker-compose.yml up -d + /usr/local/bin/docker-compose exec -T dictation_server sudo npm ci + /usr/local/bin/docker-compose exec -T dictation_server sudo npm run migrate:up:test + /usr/local/bin/docker-compose exec -T dictation_server sudo npm run test - job: backend_build dependsOn: backend_test condition: succeeded('backend_test')