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

Markdown library #149

Merged
merged 20 commits into from
Feb 5, 2024
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:

- name: Build
run: cargo build --verbose

- name: install steel dylib installer
env:
STEEL_HOME: ${{ env.STEEL_HOME }}
run: mkdir -p $STEEL_HOME/native && cd crates/cargo-steel-lib && cargo install --path .

- name: Install cogs
env:
Expand All @@ -41,12 +46,6 @@ jobs:
cd cogs/
cargo run -- install.scm

- name: install steel dylib installer
run: mkdir $STEEL_HOME/native && cd crates/cargo-steel-lib && cargo install --path .

- name: install websockets dylib
run: cd crates/steel-websockets && cargo steel-lib

- uses: actions-rs/cargo@v1
env:
STEEL_HOME: ${{ env.STEEL_HOME }}
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ cd steel &&
mkdir -p .steel/cogs &&
export STEEL_HOME="$(pwd)/.steel" &&
cargo build &&
cargo install --path crates/cargo-steel-lib &&
pushd cogs &&
cargo run -- install.scm &&
popd &&
Expand Down
Loading
Loading