You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

168 lines
4.3 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. name: CI
  2. on:
  3. pull_request:
  4. push:
  5. branches:
  6. - master
  7. env:
  8. RUST_BACKTRACE: 1
  9. jobs:
  10. style:
  11. name: Check Style
  12. runs-on: ubuntu-latest
  13. steps:
  14. - name: Checkout
  15. uses: actions/checkout@v1
  16. - name: Install Rust
  17. uses: actions-rs/toolchain@v1
  18. with:
  19. profile: minimal
  20. toolchain: stable
  21. override: true
  22. components: rustfmt
  23. - name: cargo fmt --check
  24. uses: actions-rs/cargo@v1
  25. with:
  26. command: fmt
  27. args: --all -- --check
  28. check:
  29. name: Check
  30. runs-on: ubuntu-latest
  31. env:
  32. RUSTFLAGS: -Dwarnings
  33. strategy:
  34. matrix:
  35. rust:
  36. - stable
  37. - nightly
  38. steps:
  39. - name: Checkout
  40. uses: actions/checkout@v2
  41. - name: Install Rust (${{ matrix.rust }})
  42. uses: actions-rs/toolchain@v1
  43. with:
  44. profile: minimal
  45. toolchain: ${{ matrix.rust }}
  46. override: true
  47. - uses: actions/cache@v2
  48. with:
  49. path: |
  50. ~/.cargo/registry
  51. ~/.cargo/git
  52. target
  53. key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
  54. - name: Check examples
  55. uses: actions-rs/cargo@v1
  56. with:
  57. command: check
  58. args: --examples --all
  59. - name: Check examples with all features on stable
  60. uses: actions-rs/cargo@v1
  61. with:
  62. command: check
  63. args: --examples --all-features --all
  64. if: matrix.rust == 'stable'
  65. - name: Check benchmarks on nightly
  66. uses: actions-rs/cargo@v1
  67. with:
  68. command: check
  69. args: --all-features --examples --workspace --benches
  70. if: matrix.rust == 'nightly'
  71. directories: # Job that list subdirectories
  72. name: List directories for parallelizing tests
  73. runs-on: ubuntu-latest
  74. outputs:
  75. dir: ${{ steps.set-dirs.outputs.dir }} # generate output name dir by using inner step output
  76. steps:
  77. - uses: actions/checkout@v2
  78. - id: set-dirs # Give it an id to handle to get step outputs in the outputs key above
  79. run: echo "::set-output name=dir::$(ls -d */ | jq -R -s -c 'split("\n")[:-1]')"
  80. # Define step output named dir base on ls command transformed to JSON thanks to jq
  81. test:
  82. name: Test
  83. runs-on: ubuntu-latest
  84. needs: [directories] # Depends on previous job
  85. strategy:
  86. matrix:
  87. dir: ${{fromJson(needs.directories.outputs.dir)}} # List matrix strategy from directories dynamically
  88. # rust:
  89. # - stable
  90. # - nightly
  91. exclude:
  92. - dir: scripts/
  93. - dir: curve-constraint-tests/
  94. - dir: curve-benches/
  95. steps:
  96. - name: Checkout
  97. uses: actions/checkout@v2
  98. - name: Run tests
  99. run: |
  100. cd ${{matrix.dir}}
  101. cargo test --all-features
  102. docs:
  103. name: Check Documentation
  104. runs-on: ubuntu-latest
  105. steps:
  106. - name: Checkout
  107. uses: actions/checkout@v1
  108. - name: Install Rust
  109. uses: actions-rs/toolchain@v1
  110. with:
  111. profile: minimal
  112. toolchain: stable
  113. override: true
  114. components: rustfmt
  115. - name: cargo doc --all --no-deps --document-private-items --all-features
  116. uses: actions-rs/cargo@v1
  117. with:
  118. command: doc
  119. args: --all --no-deps --document-private-items --all-features
  120. check_no_std:
  121. name: Check no_std
  122. runs-on: ubuntu-latest
  123. steps:
  124. - name: Checkout
  125. uses: actions/checkout@v2
  126. - name: Install Rust (${{ matrix.rust }})
  127. uses: actions-rs/toolchain@v1
  128. with:
  129. toolchain: stable
  130. target: aarch64-unknown-none
  131. override: true
  132. - uses: actions/cache@v2
  133. with:
  134. path: |
  135. ~/.cargo/registry
  136. ~/.cargo/git
  137. target
  138. key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
  139. - name: check
  140. uses: actions-rs/cargo@v1
  141. with:
  142. command: check
  143. args: --examples --workspace --exclude ark-curve-constraint-tests --exclude ark-curve-benches --target aarch64-unknown-none
  144. - name: build
  145. uses: actions-rs/cargo@v1
  146. with:
  147. command: build
  148. args: --workspace --exclude ark-curve-constraint-tests --exclude ark-curve-benches --target aarch64-unknown-none