From fdb7bac3063e62776bfc13f184cf786da19f42d1 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 23 Jan 2019 16:33:26 +0100 Subject: Add license and copyright information This patch adds license and copyright information to all files to make nitrokey-rs compliant with the REUSE practices [0]. [0] https://reuse.software/practices/2.0/ --- .builds/archlinux.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.builds/archlinux.yml') diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml index 9d45386..7dab954 100644 --- a/.builds/archlinux.yml +++ b/.builds/archlinux.yml @@ -1,3 +1,5 @@ +# Copyright (C) 2019 Robin Krahl +# SPDX-License-Identifier: MIT image: archlinux packages: - rust -- cgit v1.2.1 From a290dcccc5e52bb853d6bb475bca9376c22f98f3 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 23 Jan 2019 16:39:24 +0100 Subject: Move format checks into lint build While we want to test the code on multiple platforms and with different configurations, it is sufficient to execute the linting once. Therefore we move the formatting checks into a new lint build. --- .builds/archlinux.yml | 3 --- 1 file changed, 3 deletions(-) (limited to '.builds/archlinux.yml') diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml index 7dab954..6cc8684 100644 --- a/.builds/archlinux.yml +++ b/.builds/archlinux.yml @@ -14,9 +14,6 @@ tasks: - test: | cd nitrokey-rs cargo test - - format: | - cd nitrokey-rs - cargo fmt -- --check triggers: - action: email condition: failure -- cgit v1.2.1 From 04220982d4808c402b1a5cdda2b83e81f099a1ad Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Fri, 25 Jan 2019 20:25:42 +0100 Subject: Remove triggers from build scripts I changed the build setup so that the trigger is determined by the branch being pushed to. Therefore the triggers in the build scripts are no longer needed and removed in this patch. --- .builds/archlinux.yml | 4 ---- 1 file changed, 4 deletions(-) (limited to '.builds/archlinux.yml') diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml index 6cc8684..e9f525c 100644 --- a/.builds/archlinux.yml +++ b/.builds/archlinux.yml @@ -14,7 +14,3 @@ tasks: - test: | cd nitrokey-rs cargo test -triggers: - - action: email - condition: failure - to: nitrokey-rs-dev -- cgit v1.2.1 From 7402b99010458d7bc5d977e4e62a08132ef4a65e Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Sun, 27 Jan 2019 15:21:39 +0100 Subject: Update sources URL in build files --- .builds/archlinux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.builds/archlinux.yml') diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml index e9f525c..dfe2639 100644 --- a/.builds/archlinux.yml +++ b/.builds/archlinux.yml @@ -6,7 +6,7 @@ packages: - hidapi - gcc sources: - - https://git.sr.ht/~ireas/nitrokey-rs + - https://git.ireas.org/nitrokey-rs tasks: - build: | cd nitrokey-rs -- cgit v1.2.1 From 977151d2e56e63ab15e47155457761d7b76b69fc Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Fri, 27 Dec 2019 23:02:54 +0100 Subject: Change license for configuration and documentation to CC0-1.0 --- .builds/archlinux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.builds/archlinux.yml') diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml index dfe2639..151eb66 100644 --- a/.builds/archlinux.yml +++ b/.builds/archlinux.yml @@ -1,5 +1,5 @@ # Copyright (C) 2019 Robin Krahl -# SPDX-License-Identifier: MIT +# SPDX-License-Identifier: CC0-1.0 image: archlinux packages: - rust -- cgit v1.2.1