Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove legacy crates #1039

Merged
merged 2 commits into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
37 changes: 0 additions & 37 deletions .github/workflows/expensive.yml

This file was deleted.

44 changes: 3 additions & 41 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,26 +38,6 @@ jobs:
- name: Lint with clippy
run: cargo clippy --workspace --all-targets --all-features -- -D clippy::all

book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Cache Dependencies
uses: Swatinem/rust-cache@v2
- name: install mdbook & mdbook-linkcheck
run: |
cargo install mdbook
cargo install mdbook-linkcheck
- name: Validate links in book
run: |
mdbook build docs/
- name: Validate doc examples
run: ./docs/validate_doc_examples.py

test:
# Build & Test runs on all platforms
runs-on: ${{ matrix.os }}
Expand All @@ -68,15 +48,6 @@ jobs:
- os: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Install Mac System dependencies
if: startsWith(matrix.os,'macOS')
run: |
brew install boost
- name: Install Linux dependencies
if: startsWith(matrix.os,'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y libboost-all-dev
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -89,8 +60,8 @@ jobs:
run: cargo test --workspace --all-features --verbose

wasm-test:
runs-on: ubuntu-latest
steps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -104,7 +75,7 @@ jobs:
# wasm-pack needs a Cargo.toml with a 'package' field.
# (see https://github.com/rustwasm/wasm-pack/issues/642)
# This will still run all tests in the workspace.
run: wasm-pack test --node crates/fe --workspace --exclude fe-language-server
run: wasm-pack test --node crates/driver2 --workspace --exclude fe-language-server

release:
# Only run this when we push a tag
Expand All @@ -122,15 +93,6 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Install Linux dependencies
if: startsWith(matrix.os,'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y libboost-all-dev
- name: Install Mac System dependencies
if: startsWith(matrix.os,'macOS')
run: |
brew install boost
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
Expand Down
Loading
Loading