ci.yml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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. clippy:
  41. name: "Stable build, clippy and test"
  42. runs-on: ubuntu-latest
  43. strategy:
  44. matrix:
  45. build-args:
  46. [
  47. -p cashu,
  48. -p cashu --no-default-features,
  49. -p cashu --no-default-features --features wallet,
  50. -p cashu --no-default-features --features mint,
  51. -p cashu --no-default-features --features "mint swagger",
  52. -p cdk-common,
  53. -p cdk-common --no-default-features,
  54. -p cdk-common --no-default-features --features wallet,
  55. -p cdk-common --no-default-features --features mint,
  56. -p cdk-common --no-default-features --features "mint swagger",
  57. -p cdk,
  58. -p cdk --no-default-features,
  59. -p cdk --no-default-features --features wallet,
  60. -p cdk --no-default-features --features mint,
  61. -p cdk --no-default-features --features "mint swagger",
  62. -p cdk-redb,
  63. -p cdk-database,
  64. -p cdk-sqlite,
  65. -p cdk-axum --no-default-features,
  66. -p cdk-axum --no-default-features --features swagger,
  67. -p cdk-axum --no-default-features --features redis,
  68. -p cdk-axum --no-default-features --features "redis swagger",
  69. -p cdk-axum,
  70. -p cdk-cln,
  71. -p cdk-lnd,
  72. -p cdk-phoenixd,
  73. -p cdk-strike,
  74. -p cdk-lnbits,
  75. -p cdk-fake-wallet,
  76. --bin cdk-cli,
  77. --bin cdk-mintd,
  78. --bin cdk-mintd --no-default-features --features swagger,
  79. --bin cdk-mintd --no-default-features --features redis,
  80. --bin cdk-mintd --no-default-features --features "redis swagger",
  81. ]
  82. steps:
  83. - name: checkout
  84. uses: actions/checkout@v4
  85. - name: Install Nix
  86. uses: DeterminateSystems/nix-installer-action@v11
  87. - name: Nix Cache
  88. uses: DeterminateSystems/magic-nix-cache-action@v6
  89. - name: Rust Cache
  90. uses: Swatinem/rust-cache@v2
  91. - name: Build
  92. run: nix develop -i -L .#stable --command cargo build ${{ matrix.build-args }}
  93. - name: Clippy
  94. run: nix develop -i -L .#stable --command cargo clippy ${{ matrix.build-args }} -- -D warnings
  95. - name: Test
  96. run: nix develop -i -L .#stable --command cargo test ${{ matrix.build-args }}
  97. itest:
  98. name: "Integration regtest tests"
  99. runs-on: ubuntu-latest
  100. strategy:
  101. matrix:
  102. build-args:
  103. [
  104. -p cdk-integration-tests,
  105. ]
  106. database:
  107. [
  108. REDB,
  109. SQLITE,
  110. MEMORY,
  111. ]
  112. steps:
  113. - name: checkout
  114. uses: actions/checkout@v4
  115. - name: Install Nix
  116. uses: DeterminateSystems/nix-installer-action@v11
  117. - name: Nix Cache
  118. uses: DeterminateSystems/magic-nix-cache-action@v6
  119. - name: Rust Cache
  120. uses: Swatinem/rust-cache@v2
  121. - name: Clippy
  122. run: nix develop -i -L .#stable --command cargo clippy ${{ matrix.build-args }} -- -D warnings
  123. - name: Test
  124. run: nix develop -i -L .#stable --command just itest ${{ matrix.database }}
  125. fake-wallet-itest:
  126. name: "Integration fake wallet tests"
  127. runs-on: ubuntu-latest
  128. strategy:
  129. matrix:
  130. build-args:
  131. [
  132. -p cdk-integration-tests,
  133. ]
  134. database:
  135. [
  136. REDB,
  137. SQLITE,
  138. MEMORY,
  139. ]
  140. steps:
  141. - name: checkout
  142. uses: actions/checkout@v4
  143. - name: Install Nix
  144. uses: DeterminateSystems/nix-installer-action@v11
  145. - name: Nix Cache
  146. uses: DeterminateSystems/magic-nix-cache-action@v6
  147. - name: Rust Cache
  148. uses: Swatinem/rust-cache@v2
  149. - name: Clippy
  150. run: nix develop -i -L .#stable --command cargo clippy ${{ matrix.build-args }} -- -D warnings
  151. - name: Test fake mint
  152. run: nix develop -i -L .#stable --command just fake-mint-itest ${{ matrix.database }}
  153. msrv-build:
  154. name: "MSRV build"
  155. runs-on: ubuntu-latest
  156. strategy:
  157. matrix:
  158. build-args:
  159. [
  160. -p cashu --no-default-features --features "wallet mint",
  161. -p cdk-common --no-default-features --features "wallet mint",
  162. -p cdk --no-default-features --features "mint mint",
  163. -p cdk-axum,
  164. -p cdk-axum --no-default-features --features redis,
  165. -p cdk-strike,
  166. -p cdk-lnbits,
  167. -p cdk-phoenixd,
  168. -p cdk-fake-wallet,
  169. -p cdk-cln,
  170. ]
  171. steps:
  172. - name: checkout
  173. uses: actions/checkout@v4
  174. - name: Install Nix
  175. uses: DeterminateSystems/nix-installer-action@v11
  176. - name: Nix Cache
  177. uses: DeterminateSystems/magic-nix-cache-action@v6
  178. - name: Rust Cache
  179. uses: Swatinem/rust-cache@v2
  180. - name: Build
  181. run: nix develop -i -L .#msrv --command cargo build ${{ matrix.build-args }}
  182. db-msrv-build:
  183. name: "DB MSRV build"
  184. runs-on: ubuntu-latest
  185. strategy:
  186. matrix:
  187. build-args:
  188. [
  189. -p cdk-sqlite,
  190. -p cdk-redb,
  191. ]
  192. steps:
  193. - name: checkout
  194. uses: actions/checkout@v4
  195. - name: Install Nix
  196. uses: DeterminateSystems/nix-installer-action@v11
  197. - name: Nix Cache
  198. uses: DeterminateSystems/magic-nix-cache-action@v6
  199. - name: Rust Cache
  200. uses: Swatinem/rust-cache@v2
  201. - name: Build
  202. run: nix develop -i -L .#db_shell --command cargo build ${{ matrix.build-args }}
  203. check-wasm:
  204. name: Check WASM
  205. runs-on: ubuntu-latest
  206. strategy:
  207. matrix:
  208. rust:
  209. - stable
  210. target:
  211. - wasm32-unknown-unknown
  212. build-args:
  213. [
  214. -p cdk,
  215. -p cdk --no-default-features,
  216. -p cdk --no-default-features --features wallet,
  217. ]
  218. steps:
  219. - name: checkout
  220. uses: actions/checkout@v4
  221. - name: Install Nix
  222. uses: DeterminateSystems/nix-installer-action@v11
  223. - name: Nix Cache
  224. uses: DeterminateSystems/magic-nix-cache-action@v6
  225. - name: Rust Cache
  226. uses: Swatinem/rust-cache@v2
  227. - name: Build cdk and binding
  228. run: nix develop -i -L ".#${{ matrix.rust }}" --command cargo build ${{ matrix.build-args }} --target ${{ matrix.target }}
  229. check-wasm-msrv:
  230. name: Check WASM
  231. runs-on: ubuntu-latest
  232. strategy:
  233. matrix:
  234. rust:
  235. - msrv
  236. target:
  237. - wasm32-unknown-unknown
  238. build-args:
  239. [
  240. -p cdk,
  241. -p cdk --no-default-features,
  242. -p cdk --no-default-features --features wallet,
  243. ]
  244. steps:
  245. - name: checkout
  246. uses: actions/checkout@v4
  247. - name: Install Nix
  248. uses: DeterminateSystems/nix-installer-action@v11
  249. - name: Nix Cache
  250. uses: DeterminateSystems/magic-nix-cache-action@v6
  251. - name: Rust Cache
  252. uses: Swatinem/rust-cache@v2
  253. - name: Build cdk wasm
  254. run: nix develop -i -L ".#${{ matrix.rust }}" --command cargo build ${{ matrix.build-args }} --target ${{ matrix.target }}