CI: Initial.
continuous-integration/drone Build is passing Details

Signed-off-by: Yilin Sun <imi415@imi.moe>
This commit is contained in:
Yilin Sun 2023-06-22 10:20:47 +08:00
parent 26e5cbccd9
commit 88a363043a
Signed by: imi415
GPG Key ID: 17F01E106F9F5E0A
2 changed files with 18 additions and 1 deletions

17
.drone.yml Normal file
View File

@ -0,0 +1,17 @@
---
kind: pipeline
type: docker
name: Build
steps:
- name: Submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- name: Build
image: "git.minori.work/embedded_sdk/embedded-builder-arm:12.2.mpacbti-rel1"
commands:
- mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=arm-none-eabi.cmake ..
- make yzl_wle5_template_FLASH.elf

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.10)
project(yzl_wle5_hello)
project(yzl_wle5_template)
enable_language(CXX)
enable_language(ASM)