ci.yml 8.1 KB

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