nix-shell environment and basic drone ci config

pull/110/head
Alya Sirko 2022-08-27 15:18:03 +03:00
parent 3024016fe2
commit 21aafaa5f9
2 changed files with 13 additions and 0 deletions

8
.drone.yml Normal file
View File

@ -0,0 +1,8 @@
kind: pipeline
type: exec
name: default
steps:
- name: build
commands:
- nix-shell --pure --run "flutter build apk --split-per-abi"

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [ pkgs.flutter ];
}