Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- name: Install xlings
env:
XLINGS_VERSION: 0.4.25
XLINGS_VERSION: 0.4.30
run: |
tarball="xlings-${XLINGS_VERSION}-linux-x86_64.tar.gz"
curl -fsSL -o "/tmp/${tarball}" \
Expand All @@ -23,22 +23,22 @@ jobs:
"/tmp/xlings-${XLINGS_VERSION}-linux-x86_64/subos/default/bin/xlings" self install
echo "$HOME/.xlings/subos/current/bin" >> "$GITHUB_PATH"

- name: Install workspace tools (.xlings.json → mcpp 0.0.7)
- name: Install workspace tools (.xlings.json → mcpp 0.0.8)
run: xlings install -y

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

- name: Build with mcpp
run: mcpp build

# mcpp 0.0.7 auto-prepends sandbox PATH (patchelf, ninja) for
# mcpp 0.0.8 auto-prepends sandbox PATH (patchelf, ninja) for
# test binaries, so Linux elfpatch tests run without manual PATH
# setup. Only macOS-specific tests (need install_name_tool) are
# filtered — they can't run on a Linux runner.
Expand Down
2 changes: 1 addition & 1 deletion .xlings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"workspace": {
"mcpp": { "linux": "0.0.7" }
"mcpp": { "linux": "0.0.8" }
}
}
Loading