From 68eccec9ec49dc7cd9c41fccd0dbc666320bf4ed Mon Sep 17 00:00:00 2001 From: wanggang <76527413@qq.com> Date: Thu, 21 Sep 2023 15:04:13 +0800 Subject: [PATCH] test ci --- .drone.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e68e695 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +--- +kind: pipeline +type: docker +name: linux-amd64 + +platform: + arch: amd64 + os: linux + +steps: + - name: build + image: mcr.microsoft.com/dotnet/sdk:6.0 + privileged: true + commands: + - git --no-pager log --date=format:"%Y-%m-%d %H:%M:%S" --pretty=format:"%h - %ad %cn : %s %b" --invert-grep --grep="CI SKIP" --grep="drone" >log.txt + - cat log.txt +