Skip to content

Commit

Permalink
Remove duplicate CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
gferon committed Oct 20, 2024
1 parent 418d26b commit ff2ae4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ concurrency:

jobs:
build_and_test:
strategy:
matrix:
cargo_flags: ["--all-features", "--no-default-features"]
name: cargo ${{ matrix.cargo_flags }}
runs-on: ubuntu-latest
env:
Expand All @@ -41,13 +38,13 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Build
run: cargo build --all-targets ${{ matrix.cargo_flags }}
run: cargo build --all-targets

- name: Test
run: cargo test --all-targets ${{ matrix.cargo_flags }}
run: cargo test --all-targets

- name: Test docs
run: cargo test --doc ${{ matrix.cargo_flags }}
run: cargo test --doc

rustfmt:
name: rustfmt
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ resolver = "2"
[patch.crates-io]
curve25519-dalek = { git = 'https://github.com/signalapp/curve25519-dalek', tag = 'signal-curve25519-4.1.3' }

[patch."https://github.com/whisperfish/libsignal-service-rs.git"]
libsignal-service = { path = "../libsignal-service-rs" }
# [patch."https://github.com/whisperfish/libsignal-service-rs.git"]
# libsignal-service = { path = "../libsignal-service-rs" }

0 comments on commit ff2ae4d

Please sign in to comment.