Skip to content

Commit da1a0c2

Browse files
authored
Merge pull request #116 from jamesmunns/james/bbq2-primary
Move old bbqueue to "legacy"
2 parents a11c15a + e73a2b1 commit da1a0c2

19 files changed

Lines changed: 16 additions & 95 deletions
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@ on:
77
branches: ["main"]
88
workflow_dispatch:
99

10+
defaults:
11+
run:
12+
working-directory: ./bbq2
13+
1014
jobs:
11-
miri:
15+
build:
1216
name: "Build all crates"
1317
runs-on: ubuntu-latest
1418
steps:

.github/workflows/doctests.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/embedded-builds.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/fmt.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/full-test.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
branches: ["main"]
88
workflow_dispatch:
99

10+
defaults:
11+
run:
12+
working-directory: ./bbq2
13+
1014
jobs:
1115
miri:
1216
name: "miri all the things"

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
[workspace]
2-
members = ["bbqtest", "core"]
3-
exclude = ["bbq2"]
2+
resolver = "3"
3+
members = [
4+
"bbq2",
5+
"legacy-bbqtest",
6+
"legacy-core",
7+
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
bounded-spsc-queue = { version = "0.4.0", optional = true }
1010

1111
[dependencies.bbqueue]
12-
path = "../core"
12+
path = "../legacy-core"
1313

1414

1515
[dev-dependencies]

0 commit comments

Comments
 (0)