2022-08-27 12:18:03 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
commands:
|
2022-08-27 14:09:06 +00:00
|
|
|
- nix-shell --pure --run "flutter build apk --split-per-abi"
|
2022-08-27 21:05:13 +00:00
|
|
|
- name: deploy
|
|
|
|
commands:
|
2022-08-27 20:59:33 +00:00
|
|
|
- scp build/app/outputs/apk/release/*.apk 10.0.0.3:/var/lib/fdroid/repo
|
2022-08-27 21:05:13 +00:00
|
|
|
|
|
|
|
environment:
|
|
|
|
NIX_PATH: "nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos:unstable=/nix/var/nix/profiles/per-user/root/channels/unstable"
|
|
|
|
NIXPKGS_ALLOW_UNFREE: 1
|
2022-08-27 18:05:12 +00:00
|
|
|
|
|
|
|
node:
|
2022-08-27 20:59:33 +00:00
|
|
|
server: builder
|