Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit 488a8af

Browse files
committed
manually run codegen token_ids.h on CI. somehow msvc flow doesn't catch dependencies in the makefile
1 parent fd65240 commit 488a8af

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ jobs:
7070
- name: codegen
7171
env:
7272
RUSTFLAGS: ""
73-
run: cd codegen && cargo build
73+
run: |
74+
make do-codegen
75+
make token_ids.h
7476
7577
- name: make lib file
7678
run: |

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ jobs:
105105
- name: codegen
106106
env:
107107
RUSTFLAGS: ""
108-
run: cd codegen && cargo build
108+
run: |
109+
make do-codegen
110+
make token_ids.h
109111
110112
- name: run tests
111113
run: ${{ matrix.build.run }}

0 commit comments

Comments
 (0)