Skip to content

Commit

Permalink
Remove python implementation
Browse files Browse the repository at this point in the history
Supercedes #48 (but heavily based on it, thanks @yeetfield).
  • Loading branch information
mattgodbolt committed Oct 4, 2024
1 parent 68fab24 commit 1e85fb6
Show file tree
Hide file tree
Showing 65 changed files with 39 additions and 1,917 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci-rust.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Rust CI

on:
push:
paths:
- "rozy/**"
- ".github/workflows/ci-rust.yaml"
on: push

jobs:
build:
Expand All @@ -26,10 +22,10 @@ jobs:
toolchain: stable
target: ${{ matrix.target }}
- name: Format
run: cargo fmt --manifest-path rozy/Cargo.toml
run: cargo fmt
- name: Clippy
run: cargo clippy --manifest-path rozy/Cargo.toml
run: cargo clippy
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- name: Test
run: cargo test --target=${{ matrix.target }} --manifest-path rozy/Cargo.toml
run: cargo test --target=${{ matrix.target }}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- name: Build
run: cargo build --release --verbose --target=${{ matrix.target }} --manifest-path rozy/Cargo.toml
run: cargo build --release --verbose --target=${{ matrix.target }}
- name: Ensure version is correct
run: rozy/target/${{ matrix.target }}/release/ozy --version | grep "$(echo $GITHUB_REF_NAME | cut -c2-)"
- name: Rename
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,7 @@ dmypy.json

# VSCode
.vscode/

# ust
/target
/test_resource/integration/.*
File renamed without changes.
52 changes: 0 additions & 52 deletions .idea/codeStyles/Project.xml

This file was deleted.

Loading

0 comments on commit 1e85fb6

Please sign in to comment.