ci.yml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. name: CI
  2. on:
  3. push:
  4. branches: [main]
  5. pull_request:
  6. branches: [main]
  7. env:
  8. CARGO_TERM_COLOR: always
  9. jobs:
  10. self-care:
  11. name: Flake self-check
  12. runs-on: ubuntu-latest
  13. steps:
  14. - uses: actions/checkout@v4
  15. - name: Check Nix flake inputs
  16. uses: DeterminateSystems/flake-checker-action@v7
  17. with:
  18. fail-mode: true
  19. pre-commit-checks:
  20. name: "Cargo fmt, typos"
  21. runs-on: ubuntu-latest
  22. steps:
  23. - name: checkout
  24. uses: actions/checkout@v4
  25. - name: Install Nix
  26. uses: DeterminateSystems/nix-installer-action@v11
  27. - name: Nix Cache
  28. uses: DeterminateSystems/magic-nix-cache-action@v6
  29. - name: Rust Cache
  30. uses: Swatinem/rust-cache@v2
  31. - name: Cargo fmt
  32. run: |
  33. nix develop -i -L .#nightly --command bash -c '
  34. # Force use of Nix-provided rustfmt
  35. export RUSTFMT=$(command -v rustfmt)
  36. cargo fmt --check
  37. '
  38. - name: typos
  39. run: nix develop -i -L .#nightly --command typos
  40. examples:
  41. name: "Run examples"
  42. runs-on: ubuntu-latest
  43. strategy:
  44. matrix:
  45. build-args:
  46. [
  47. mint-token,
  48. p2pk,
  49. proof-selection,
  50. wallet
  51. ]
  52. steps:
  53. - name: checkout
  54. uses: actions/checkout@v4
  55. - name: Install Nix
  56. uses: DeterminateSystems/nix-installer-action@v11
  57. - name: Nix Cache
  58. uses: DeterminateSystems/magic-nix-cache-action@v6
  59. - name: Rust Cache
  60. uses: Swatinem/rust-cache@v2
  61. - name: Run example
  62. run: nix develop -i -L .#stable --command cargo r --example ${{ matrix.build-args }}
  63. clippy:
  64. name: "Stable build, clippy and test"
  65. runs-on: ubuntu-latest
  66. strategy:
  67. matrix:
  68. build-args:
  69. [
  70. -p cashu,
  71. -p cashu --no-default-features,
  72. -p cashu --no-default-features --features wallet,
  73. -p cashu --no-default-features --features mint,
  74. -p cashu --no-default-features --features "mint swagger",
  75. -p cdk-common,
  76. -p cdk-common --no-default-features,
  77. -p cdk-common --no-default-features --features wallet,
  78. -p cdk-common --no-default-features --features mint,
  79. -p cdk-common --no-default-features --features "mint swagger",
  80. -p cdk,
  81. -p cdk --no-default-features,
  82. -p cdk --no-default-features --features wallet,
  83. -p cdk --no-default-features --features mint,
  84. -p cdk --no-default-features --features "mint swagger",
  85. -p cdk-redb,
  86. -p cdk-sqlite,
  87. -p cdk-axum --no-default-features,
  88. -p cdk-axum --no-default-features --features swagger,
  89. -p cdk-axum --no-default-features --features redis,
  90. -p cdk-axum --no-default-features --features "redis swagger",
  91. -p cdk-axum,
  92. -p cdk-cln,
  93. -p cdk-lnd,
  94. -p cdk-phoenixd,
  95. -p cdk-strike,
  96. -p cdk-lnbits,
  97. -p cdk-fake-wallet,
  98. --bin cdk-cli,
  99. --bin cdk-mintd,
  100. --bin cdk-mintd --no-default-features --features swagger,
  101. --bin cdk-mintd --no-default-features --features redis,
  102. --bin cdk-mintd --no-default-features --features "redis swagger",
  103. --bin cdk-mintd --no-default-features --features management-rpc,
  104. --bin cdk-mint-cli,
  105. ]
  106. steps:
  107. - name: checkout
  108. uses: actions/checkout@v4
  109. - name: Install Nix
  110. uses: DeterminateSystems/nix-installer-action@v11
  111. - name: Nix Cache
  112. uses: DeterminateSystems/magic-nix-cache-action@v6
  113. - name: Rust Cache
  114. uses: Swatinem/rust-cache@v2
  115. - name: Build
  116. run: nix develop -i -L .#stable --command cargo build ${{ matrix.build-args }}
  117. - name: Clippy
  118. run: nix develop -i -L .#stable --command cargo clippy ${{ matrix.build-args }} -- -D warnings
  119. - name: Test
  120. run: nix develop -i -L .#stable --command cargo test ${{ matrix.build-args }}
  121. itest:
  122. name: "Integration regtest tests"
  123. runs-on: ubuntu-latest
  124. strategy:
  125. matrix:
  126. build-args:
  127. [
  128. -p cdk-integration-tests,
  129. ]
  130. database:
  131. [
  132. REDB,
  133. SQLITE,
  134. MEMORY,
  135. ]
  136. steps:
  137. - name: checkout
  138. uses: actions/checkout@v4
  139. - name: Install Nix
  140. uses: DeterminateSystems/nix-installer-action@v11
  141. - name: Nix Cache
  142. uses: DeterminateSystems/magic-nix-cache-action@v6
  143. - name: Rust Cache
  144. uses: Swatinem/rust-cache@v2
  145. - name: Clippy
  146. run: nix develop -i -L .#stable --command cargo clippy ${{ matrix.build-args }} -- -D warnings
  147. - name: Test
  148. run: nix develop -i -L .#stable --command just itest ${{ matrix.database }}
  149. fake-wallet-itest:
  150. name: "Integration fake wallet tests"
  151. runs-on: ubuntu-latest
  152. strategy:
  153. matrix:
  154. build-args:
  155. [
  156. -p cdk-integration-tests,
  157. ]
  158. database:
  159. [
  160. REDB,
  161. SQLITE,
  162. MEMORY,
  163. ]
  164. steps:
  165. - name: checkout
  166. uses: actions/checkout@v4
  167. - name: Install Nix
  168. uses: DeterminateSystems/nix-installer-action@v11
  169. - name: Nix Cache
  170. uses: DeterminateSystems/magic-nix-cache-action@v6
  171. - name: Rust Cache
  172. uses: Swatinem/rust-cache@v2
  173. - name: Clippy
  174. run: nix develop -i -L .#stable --command cargo clippy ${{ matrix.build-args }} -- -D warnings
  175. - name: Test fake mint
  176. run: nix develop -i -L .#stable --command just fake-mint-itest ${{ matrix.database }}
  177. pure-itest:
  178. name: "Integration fake wallet tests"
  179. runs-on: ubuntu-latest
  180. steps:
  181. - name: checkout
  182. uses: actions/checkout@v4
  183. - name: Install Nix
  184. uses: DeterminateSystems/nix-installer-action@v11
  185. - name: Nix Cache
  186. uses: DeterminateSystems/magic-nix-cache-action@v6
  187. - name: Rust Cache
  188. uses: Swatinem/rust-cache@v2
  189. - name: Test fake mint
  190. run: nix develop -i -L .#stable --command just test
  191. msrv-build:
  192. name: "MSRV build"
  193. runs-on: ubuntu-latest
  194. strategy:
  195. matrix:
  196. build-args:
  197. [
  198. -p cashu --no-default-features --features "wallet mint",
  199. -p cdk-common --no-default-features --features "wallet mint",
  200. -p cdk --no-default-features --features "mint mint",
  201. -p cdk-axum,
  202. -p cdk-axum --no-default-features --features redis,
  203. -p cdk-strike,
  204. -p cdk-lnbits,
  205. -p cdk-phoenixd,
  206. -p cdk-fake-wallet,
  207. -p cdk-cln,
  208. -p cdk-mint-rpc,
  209. ]
  210. steps:
  211. - name: checkout
  212. uses: actions/checkout@v4
  213. - name: Install Nix
  214. uses: DeterminateSystems/nix-installer-action@v11
  215. - name: Nix Cache
  216. uses: DeterminateSystems/magic-nix-cache-action@v6
  217. - name: Rust Cache
  218. uses: Swatinem/rust-cache@v2
  219. - name: Build
  220. run: nix develop -i -L .#msrv --command cargo build ${{ matrix.build-args }}
  221. db-msrv-build:
  222. name: "DB MSRV build"
  223. runs-on: ubuntu-latest
  224. strategy:
  225. matrix:
  226. build-args:
  227. [
  228. -p cdk-sqlite,
  229. -p cdk-redb,
  230. ]
  231. steps:
  232. - name: checkout
  233. uses: actions/checkout@v4
  234. - name: Install Nix
  235. uses: DeterminateSystems/nix-installer-action@v11
  236. - name: Nix Cache
  237. uses: DeterminateSystems/magic-nix-cache-action@v6
  238. - name: Rust Cache
  239. uses: Swatinem/rust-cache@v2
  240. - name: Build
  241. run: nix develop -i -L .#db_shell --command cargo build ${{ matrix.build-args }}
  242. check-wasm:
  243. name: Check WASM
  244. runs-on: ubuntu-latest
  245. strategy:
  246. matrix:
  247. rust:
  248. - stable
  249. target:
  250. - wasm32-unknown-unknown
  251. build-args:
  252. [
  253. -p cdk,
  254. -p cdk --no-default-features,
  255. -p cdk --no-default-features --features wallet,
  256. ]
  257. steps:
  258. - name: checkout
  259. uses: actions/checkout@v4
  260. - name: Install Nix
  261. uses: DeterminateSystems/nix-installer-action@v11
  262. - name: Nix Cache
  263. uses: DeterminateSystems/magic-nix-cache-action@v6
  264. - name: Rust Cache
  265. uses: Swatinem/rust-cache@v2
  266. - name: Build cdk and binding
  267. run: nix develop -i -L ".#${{ matrix.rust }}" --command cargo build ${{ matrix.build-args }} --target ${{ matrix.target }}
  268. check-wasm-msrv:
  269. name: Check WASM
  270. runs-on: ubuntu-latest
  271. strategy:
  272. matrix:
  273. rust:
  274. - msrv
  275. target:
  276. - wasm32-unknown-unknown
  277. build-args:
  278. [
  279. -p cdk,
  280. -p cdk --no-default-features,
  281. -p cdk --no-default-features --features wallet,
  282. ]
  283. steps:
  284. - name: checkout
  285. uses: actions/checkout@v4
  286. - name: Install Nix
  287. uses: DeterminateSystems/nix-installer-action@v11
  288. - name: Nix Cache
  289. uses: DeterminateSystems/magic-nix-cache-action@v6
  290. - name: Rust Cache
  291. uses: Swatinem/rust-cache@v2
  292. - name: Build cdk wasm
  293. run: nix develop -i -L ".#${{ matrix.rust }}" --command cargo build ${{ matrix.build-args }} --target ${{ matrix.target }}