Skip to content

Commit c474a0b

Browse files
committed
ci: install QuantEcon/mystmd from main and log build identifier
Aligns the lecture build with the updated QuantEcon/mystmd workflow, where main carries all squash-merged features (replacing the previous quantecon integration branch). Also surfaces VERSION.yml in build logs for diagnostic traceability of which qe-vN features are in use.
1 parent 68e4fb8 commit c474a0b

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build-ipynb.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,16 @@ jobs:
2828

2929
- name: Install mystmd (QuantEcon fork)
3030
run: |
31-
git clone --branch quantecon --depth 1 \
31+
git clone --branch main --depth 1 \
3232
https://github.com/QuantEcon/mystmd.git /tmp/qe-mystmd
3333
cd /tmp/qe-mystmd
3434
bun install
3535
bun run build
3636
npm install -g /tmp/qe-mystmd/packages/mystmd
3737
38+
- name: Log QuantEcon/mystmd build identifier
39+
run: cat /tmp/qe-mystmd/quantecon/VERSION.yml
40+
3841
- name: Verify mystmd version
3942
run: myst --version
4043

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,16 @@ jobs:
3939

4040
- name: Install mystmd (QuantEcon fork)
4141
run: |
42-
git clone --branch quantecon --depth 1 \
42+
git clone --branch main --depth 1 \
4343
https://github.com/QuantEcon/mystmd.git /tmp/qe-mystmd
4444
cd /tmp/qe-mystmd
4545
bun install
4646
bun run build
4747
npm install -g /tmp/qe-mystmd/packages/mystmd
4848
49+
- name: Log QuantEcon/mystmd build identifier
50+
run: cat /tmp/qe-mystmd/quantecon/VERSION.yml
51+
4952
- name: Verify mystmd version
5053
run: myst --version
5154

0 commit comments

Comments
 (0)