09
Some checks failed
test_CICD / build (push) Failing after 7s

This commit is contained in:
威勝 張 2025-02-22 21:01:17 +08:00
parent cac89d0af0
commit a3b9f47e96

View File

@ -8,16 +8,18 @@ on:
- develop - develop
jobs: jobs:
build: # 定义一个名为 build 的作业 build:
runs-on: test # 指定了作业运行的环境 runs-on: test
steps: steps:
- name: Set PowerShell Execution Policy
run: Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
- name: Run CMake build and install - name: Run CMake build and install
run: | shell: powershell
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process -Force run: |
echo "test_start" echo "test_start"
echo "test_end" sleep 20
echo "test_end"