Skip to content

Commit

Permalink
chore: update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Oct 18, 2023
1 parent 38746b0 commit f80cdff
Showing 1 changed file with 124 additions and 137 deletions.
261 changes: 124 additions & 137 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ env:
jobs:
set-msrv:
runs-on: ubuntu-latest
outputs:
msrv: ${{ steps.msrv.outputs.msrv }}
steps:
- uses: actions/checkout@v2
- id: msrv
run: echo "::set-output name=msrv::$(echo $MSRV)"
- uses: actions/checkout@v4
- name: Extract MSRV from Cargo.toml
run: MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].rust_version')
- name: Set MSRV as output
id: msrv
run: echo "MSRV=$MSRV" >> "$GITHUB_OUTPUT"

# NOTE vmx 2022-06-14: currently doesn't work, hence run it on CircleCI
# for now.
Expand All @@ -31,8 +32,8 @@ jobs:

runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: uraimo/run-on-arch-action@v2.1.1
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2.5.1
name: Run commands
id: runcmd
with:
Expand All @@ -54,133 +55,119 @@ jobs:
$HOME/.cargo/bin/cargo test --config net.git-fetch-with-cli=true --release --no-default-features --features blst,multicore --target ${{ matrix.target }}
$HOME/.cargo/bin/cargo test --config net.git-fetch-with-cli=true --release --no-default-features --features blst,multicore,blst-portable --target ${{ matrix.target }}
# # Linux tests
# linux:
# needs: set-msrv
# strategy:
# matrix:
# include:
# # 32-bit Linux/x86
# - target: i686-unknown-linux-gnu
# rust: ${{needs.set-msrv.outputs.msrv}}
# deps: sudo apt update && sudo apt install gcc-multilib
# - target: i686-unknown-linux-gnu
# rust: stable
# deps: sudo apt update && sudo apt install gcc-multilib
#
# # 64-bit Linux/x86_64
# - target: x86_64-unknown-linux-gnu
# rust: ${{needs.set-msrv.outputs.msrv}}
# - target: x86_64-unknown-linux-gnu
# rust: stable
#
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: ${{ matrix.rust }}
# target: ${{ matrix.target }}
# override: true
# - name: Install opencl
# run: sudo apt-get install -y ocl-icd-opencl-dev
# - run: ${{ matrix.deps }}
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing,multicore
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,blst-portable
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore,blst-portable
#
#
# # macOS tests
# macos:
# needs: set-msrv
# strategy:
# matrix:
# toolchain:
# - ${{needs.set-msrv.outputs.msrv}}
# - stable
#
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: ${{ matrix.toolchain }}
# target: x86_64-apple-darwin
# override: true
# - run: cargo test --no-default-features --features pairing,multicore
# - run: cargo test --no-default-features --features pairing
# - run: cargo test --no-default-features --features blst
# - run: cargo test --no-default-features --features blst,multicore
# - run: cargo test --no-default-features --features blst,blst-portable
# - run: cargo test --no-default-features --features blst,multicore,blst-portable
#
# # Windows tests
# windows:
# needs: set-msrv
# strategy:
# matrix:
# include:
# # 64-bit Windows (MSVC)
# - target: x86_64-pc-windows-msvc
# toolchain: stable
#
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: ${{ matrix.toolchain }}
# target: ${{ matrix.target }}
# override: true
# - uses: msys2/setup-msys2@v2
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing,multicore
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,blst-portable
# - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore,blst-portable
#
# clippy_check_blst:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
# - run: rustup component add clippy
# - uses: actions-rs/clippy-check@v1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# args: --no-default-features --features blst,multicore
#
# clippy_check_pairing:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
# - run: rustup component add clippy
# - uses: actions-rs/clippy-check@v1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
#
# check_fmt_and_docs:
# name: Checking fmt and docs
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
#
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: nightly
# override: true
# components: rustfmt
#
# - name: setup
# run: |
# rustup component add rustfmt
# rustc --version
# - name: fmt
# run: cargo fmt --all -- --check
# Linux tests
linux:
needs: set-msrv
strategy:
matrix:
include:
# 32-bit Linux/x86
- target: i686-unknown-linux-gnu
toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
deps: sudo apt update && sudo apt install gcc-multilib
- target: i686-unknown-linux-gnu
toolchain: stable
deps: sudo apt update && sudo apt install gcc-multilib

# 64-bit Linux/x86_64
- target: x86_64-unknown-linux-gnu
toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
- target: x86_64-unknown-linux-gnu
toolchain: stable

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
targets: ${{ matrix.target }}
- name: Install opencl
run: sudo apt-get install -y ocl-icd-opencl-dev
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing,multicore
- run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,blst-portable
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore,blst-portable


# macOS tests
macos:
needs: set-msrv
strategy:
matrix:
toolchain:
- ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
- stable

runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
target: x86_64-apple-darwin
- run: cargo test --no-default-features --features pairing,multicore
- run: cargo test --no-default-features --features pairing
- run: cargo test --no-default-features --features blst
- run: cargo test --no-default-features --features blst,multicore
- run: cargo test --no-default-features --features blst,blst-portable
- run: cargo test --no-default-features --features blst,multicore,blst-portable

# Windows tests
windows:
needs: set-msrv
strategy:
matrix:
include:
# 64-bit Windows (MSVC)
- target: x86_64-pc-windows-msvc
toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}

runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
targets: ${{ matrix.target }}
- uses: msys2/setup-msys2@v2
- run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing,multicore
- run: cargo test --target ${{ matrix.target }} --no-default-features --features pairing
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,blst-portable
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore,blst-portable

clippy_check_blst:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --no-default-features --features blst,multicore

clippy_check_pairing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

check_fmt_and_docs:
name: Checking fmt and docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- name: fmt
run: cargo fmt --all -- --check

0 comments on commit f80cdff

Please sign in to comment.