From 1724eb7202b3f4bd44e22dcc778dd2e9e7e20f39 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sun, 25 Sep 2022 02:11:36 +0900 Subject: [PATCH] adding .drone.yml --- .drone.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 00000000..381cbcbb --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +kind: pipeline +type: docker +name: hawk + +platform: + os: linux + arch: amd64 + +steps: + - name: rockylinux-9 + image: docker.io/rockylinux:9 + commands: + - dnf -y install --enablerepo=devel mysql-devel libffi-devel rpm-build gcc gcc-c++ + - find . -exec touch -r {} + + - mkdir -p bld/rockylinux-9 && cd bld/rockylinux-9 + - ../../configure && make && make check && make rpm