Skip to content

Commit 82d9d9e

Browse files
committed
ci: retrigger with fixed mcpp 0.0.6
1 parent f0e49f8 commit 82d9d9e

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
"/tmp/xlings-${XLINGS_VERSION}-linux-x86_64/subos/default/bin/xlings" self install
2424
echo "$HOME/.xlings/subos/current/bin" >> "$GITHUB_PATH"
2525
26-
- name: Install workspace tools (.xlings.json → mcpp 0.0.6)
26+
- name: Install workspace tools (.xlings.json → mcpp 0.0.7)
2727
run: xlings install -y
2828

2929
# Cache mcpp's self-bootstrapped sandbox (musl-gcc + binutils +
3030
# glibc + ninja + patchelf, ~800 MB). Toolchain set is pinned by
31-
# mcpp 0.0.6, so a fixed key suffices.
31+
# mcpp 0.0.7, so a fixed key suffices.
3232
- name: Cache mcpp sandbox
3333
uses: actions/cache@v4
3434
with:
35-
path: ~/.xlings/data/xpkgs/xim-x-mcpp/0.0.6/registry
36-
key: mcpp-sandbox-${{ runner.os }}-mcpp0.0.6
35+
path: ~/.xlings/data/xpkgs/xim-x-mcpp/0.0.7/registry
36+
key: mcpp-sandbox-${{ runner.os }}-mcpp0.0.7
3737

3838
- name: Build with mcpp
3939
run: mcpp build

.xlings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"workspace": {
3-
"mcpp": { "linux": "0.0.6" }
3+
"mcpp": { "linux": "0.0.7" }
44
}
55
}

mcpp.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
namespace = "mcpplibs.capi"
33
name = "lua"
44
version = "0.0.3"
5-
description = "C++23 module wrapping the Lua 5.4 C API — import mcpplibs.capi.lua;"
5+
description = "C++23 module wrapping the Lua 5.4 C API"
66
license = "Apache-2.0"
77
repo = "https://github.com/mcpplibs/lua"
88

@@ -12,8 +12,8 @@ path = "src/capi/lua.cppm"
1212
[targets.capi-lua]
1313
kind = "lib"
1414

15-
[dependencies.compat]
15+
[dependencies]
1616
lua = "5.4.7"
1717

18-
[dev-dependencies.compat]
18+
[dev-dependencies]
1919
gtest = "1.15.2"

0 commit comments

Comments
 (0)