diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..af88ad1aa9e8227505ce8b90b7d18a8bacf38b8f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +image: debian:testing + +stages: + - test + +.tags: &tags + tags: + - general + +before_script: + - apt-get -y update + - apt-get -y install nim + +build_bin: + tags: + - general + stage: test + script: + - nimble test diff --git a/libSAEDEA.nimble b/libsaedea.nimble similarity index 93% rename from libSAEDEA.nimble rename to libsaedea.nimble index 3e90ded13d8a29e5b3824b6c83673e4059108e2f..10601098ce642015aee7fe035137d206edc8aa31 100644 --- a/libSAEDEA.nimble +++ b/libsaedea.nimble @@ -1,6 +1,6 @@ # Package -version = "0.9.7" +version = "0.9.8" author = "m33" description = "Library implementing a variation of the Simple And Efficient Data Encryption Algorithm (INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH VOLUME 8, ISSUE 12, DECEMBER 2019 ISSN 2277-8616)" license = "MIT" diff --git a/src/libSAEDEA.nim b/src/libsaedea.nim similarity index 100% rename from src/libSAEDEA.nim rename to src/libsaedea.nim diff --git a/src/libSAEDEA/saedea.nim b/src/libsaedea/saedea.nim similarity index 100% rename from src/libSAEDEA/saedea.nim rename to src/libsaedea/saedea.nim diff --git a/tests/test1.nim b/tests/test1.nim index 5fdbdc8938fe3e5170cb56637b4bf7d512168a20..8f8e9073ce604c884f219696fa79a4951824a9cd 100644 --- a/tests/test1.nim +++ b/tests/test1.nim @@ -2,7 +2,7 @@ import unittest import times -import libSAEDEA +import libsaedea import std/sha1 proc cmpStrChars(s1: string, s2: string): bool =