From 719b1372080be2cbbba5c4004466304f42c3dbb5 Mon Sep 17 00:00:00 2001 From: zx Date: Sun, 12 Feb 2023 22:44:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3macos=E6=8C=81=E7=BB=AD?= =?UTF-8?q?=E9=9B=86=E6=88=90=E8=BF=90=E8=A1=8C=E7=9B=AE=E5=BD=95=20(#2234?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改 macos 最后一步运行目录release/linux/Debug/ 改为release/darwin/Debug/ 参看build log https://github.com/ZLMediaKit/ZLMediaKit/actions/runs/4150150582/jobs/7179611556 --- .github/workflows/macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 291b712e..84638370 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -34,6 +34,6 @@ jobs: run: mkdir -p build && cd build && cmake .. && make -j $(nproc) - name: 运行MediaServer - run: pwd && cd release/linux/Debug && sudo ./MediaServer -d & + run: pwd && cd release/darwin/Debug && sudo ./MediaServer -d &