remove elliptic package from ME #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/workflow_musl.yaml | |
name: Rust CI - MUSL | |
on: | |
push: | |
branches: [ "master", "listener-refined" ] | |
pull_request: | |
branches: [ "main", "listener-refined" ] | |
jobs: | |
check: | |
name: Check (MUSL) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Install musl target | |
run: rustup target add x86_64-unknown-linux-musl | |
- name: Install musl-tools | |
run: sudo apt-get update && sudo apt-get install -y musl-tools | |
- name: Cache Cargo registry | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-registry- | |
- name: Cache Cargo git index | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/git | |
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-git- | |
- name: Cache Cargo build | |
uses: actions/cache@v3 | |
with: | |
path: target | |
key: ${{ runner.os }}-cargo-build-musl-${{ hashFiles('**/Cargo.lock') }}-v2 | |
restore-keys: | | |
${{ runner.os }}-cargo-build-musl- | |
${{ runner.os }}-cargo-build- | |
- name: Remove .cargo/config.toml if exists | |
run: rm -f .cargo/config.toml | |
- name: Update dependencies | |
run: cargo update | |
test: | |
name: Test Suite (MUSL) | |
runs-on: ubuntu-latest | |
needs: check | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Install musl target | |
run: rustup target add x86_64-unknown-linux-musl | |
- name: Install musl-tools | |
run: sudo apt-get update && sudo apt-get install -y musl-tools | |
- name: Cache Cargo registry | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-registry- | |
- name: Cache Cargo git index | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/git | |
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-git- | |
- name: Cache Cargo build | |
uses: actions/cache@v3 | |
with: | |
path: target | |
key: ${{ runner.os }}-cargo-build-musl-${{ hashFiles('**/Cargo.lock') }}-v2 | |
restore-keys: | | |
${{ runner.os }}-cargo-build-musl- | |
${{ runner.os }}-cargo-build- | |
- name: Remove .cargo/config.toml if exists | |
run: rm -f .cargo/config.toml | |
- name: Update dependencies | |
run: cargo update | |
- name: Verify Installed Targets | |
run: rustup target list --installed | |
- name: Run cargo test | |
env: | |
RUST_BACKTRACE: 1 | |
run: cargo test --target x86_64-unknown-linux-musl |