From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mail-a.sr.ht; dkim=pass header.d=johnnyrichard.com header.i=@johnnyrichard.com Received: from out-170.mta0.migadu.com (out-170.mta0.migadu.com [91.218.175.170]) by mail-a.sr.ht (Postfix) with ESMTPS id DC9F020156 for <~johnnyrichard/olang-devel@lists.sr.ht>; Tue, 13 Feb 2024 20:34:40 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=johnnyrichard.com; s=key1; t=1707856480; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=66M2+49gr/3ATNZzWMbiipy+v9/Frdamzefxtuw15VI=; b=MArJJlxaIRtUZLEpUXNPteG9TGCnQ4p+JqNCx6apXjkj97ALL4KPh3CNAzaFhr+7d7NmGa Z41dDHBaBjz0aMWHKaIAl5Q9k5EX+SJSQ3ypiCaBNI7g6LXbcXRP2G7ufyfi+6kAUTyLs/ KmLqQ34vtslvcQVrz4skiObZmw7DdDqW26WndCD70+e0SRbZhP+75BYmHli7HkGQlQPPpj 9YvFU90URNi++K5HokDhz3jdt2lCLsR88pIn2RdQBzUuglxKrhFbjvUKaCd/Th3sE4gRQj now0qOzLwRdXVpa/7p/l40S05txD/5N+pbsXExIDERnKiB/19JtYwkOtDYQGaQ== From: Johnny Richard To: ~johnnyrichard/olang-devel@lists.sr.ht Cc: Johnny Richard Subject: [PATCH olang] build: enable continuous integration through .build.yml Date: Tue, 13 Feb 2024 22:36:16 +0100 Message-ID: <20240213213620.13471-1-johnny@johnnyrichard.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-TUID: 9JcIN+qAZrN4 A small build pipeline with linter and compilation settings. Signed-off-by: Johnny Richard --- .build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .build.yml diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..35a5da8 --- /dev/null +++ b/.build.yml @@ -0,0 +1,12 @@ +image: archlinux +packages: + - gcc + - make + - clang +tasks: + - lint: | + cd olang + make linter + - build: | + cd olang + make -- 2.42.0