try darwin artifact

This commit is contained in:
Ildar Kamalov
2025-01-31 17:47:03 +03:00
parent 275677f494
commit 8657483022
2 changed files with 3 additions and 3 deletions

View File

@@ -173,7 +173,7 @@
'Test e2e': 'Test e2e':
'artifact-subscriptions': 'artifact-subscriptions':
- 'artifact': 'AdGuardHome_linux_amd64' - 'artifact': 'AdGuardHome_darwin_amd64'
'docker': 'docker':
'image': '${bamboo.dockerFrontend}' 'image': '${bamboo.dockerFrontend}'
'volumes': 'volumes':
@@ -195,7 +195,7 @@
export CI=true export CI=true
mkdir -p /tmp/adguard mkdir -p /tmp/adguard
tar -xzf dist/AdGuardHome_linux_amd64.tar.gz -C /tmp/adguard tar -xzf dist/AdGuardHome_darwin_amd64.tar.gz -C /tmp/adguard
chmod +x /tmp/adguard/AdGuardHome chmod +x /tmp/adguard/AdGuardHome

View File

@@ -70,7 +70,7 @@ export default defineConfig({
webServer: { webServer: {
command: process.env.CI command: process.env.CI
? 'sudo /tmp/adguard/AdGuardHome --local-frontend -v' ? '/tmp/adguard/AdGuardHome --local-frontend -v'
: 'rm -f AdGuardHome.yaml && sudo ./AdGuardHome --local-frontend -v', : 'rm -f AdGuardHome.yaml && sudo ./AdGuardHome --local-frontend -v',
url: 'http://127.0.0.1:3000', url: 'http://127.0.0.1:3000',
cwd: '..', cwd: '..',