Compare commits
No commits in common. "f14f0ce9dba6943bfd7aa121322c9223e74000c0" and "9d8d3fa864edb5b7edb3946fc26c4ec1c7210cec" have entirely different histories.
f14f0ce9db
...
9d8d3fa864
27
.drone.yml
27
.drone.yml
|
@ -1,27 +0,0 @@
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: exec
|
|
||||||
name: abacus checks
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: flake check
|
|
||||||
commands:
|
|
||||||
- nix flake check
|
|
||||||
|
|
||||||
- name: notifiy
|
|
||||||
commands:
|
|
||||||
- nix run .#matrix-notifier
|
|
||||||
environment:
|
|
||||||
ADDRESS:
|
|
||||||
from_secret: matrix_homeserver
|
|
||||||
ROOM:
|
|
||||||
from_secret: matrix_roomid
|
|
||||||
USER:
|
|
||||||
from_secret: matrix_username
|
|
||||||
PASS:
|
|
||||||
from_secret: matrix_password
|
|
||||||
when:
|
|
||||||
status:
|
|
||||||
- failure
|
|
||||||
- success
|
|
||||||
...
|
|
|
@ -87,6 +87,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with pkgs.lib; {
|
meta = with pkgs.lib; {
|
||||||
|
broken = true; # Only breaks under nix
|
||||||
description = "A simple calculator using big numbers";
|
description = "A simple calculator using big numbers";
|
||||||
homepage = "https://gitea.belanyi.fr/ambroisie/abacus";
|
homepage = "https://gitea.belanyi.fr/ambroisie/abacus";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -5,7 +5,7 @@ bignum_sources = files(
|
||||||
|
|
||||||
bignum_inc = include_directories('.')
|
bignum_inc = include_directories('.')
|
||||||
|
|
||||||
bignum_lib = static_library(
|
bignum_lib = library(
|
||||||
'bignum',
|
'bignum',
|
||||||
sources: bignum_sources,
|
sources: bignum_sources,
|
||||||
)
|
)
|
||||||
|
|
|
@ -12,5 +12,4 @@ abacus = executable(
|
||||||
bignum,
|
bignum,
|
||||||
parse,
|
parse,
|
||||||
],
|
],
|
||||||
install: true,
|
|
||||||
)
|
)
|
||||||
|
|
|
@ -31,7 +31,7 @@ parser_sources = custom_target(
|
||||||
|
|
||||||
parse_inc = include_directories('.')
|
parse_inc = include_directories('.')
|
||||||
|
|
||||||
parse_lib = static_library(
|
parse_lib = library(
|
||||||
'parser',
|
'parser',
|
||||||
'parser-driver.cc',
|
'parser-driver.cc',
|
||||||
'parser-driver.hh',
|
'parser-driver.hh',
|
||||||
|
|
Loading…
Reference in a new issue