2021-04-04 20:52:27 +02:00
|
|
|
name: VC gen
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-04-14 09:58:16 +02:00
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
2021-04-04 20:52:27 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-vc:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build V
|
|
|
|
run: make
|
|
|
|
- name: Regenerate v.c and v_win.c
|
|
|
|
run: |
|
2021-04-07 02:16:17 +02:00
|
|
|
git config --global user.email "vlang-bot@users.noreply.github.com"
|
|
|
|
git config --global user.name "vlang-bot"
|
2021-04-05 17:12:07 +02:00
|
|
|
|
2021-04-04 20:52:27 +02:00
|
|
|
COMMIT_HASH=$(git rev-parse --short HEAD)
|
|
|
|
COMMIT_MSG=$(git log -1 --oneline --pretty='%s' HEAD)
|
|
|
|
|
|
|
|
rm -rf vc
|
2021-04-07 02:22:40 +02:00
|
|
|
git clone https://vlang-bot:${{ secrets.VLANG_BOT_SECRET }}@github.com/vlang/vc.git
|
2021-04-04 20:52:27 +02:00
|
|
|
|
|
|
|
rm -rf vc/v.c vc/v_win.c
|
|
|
|
|
|
|
|
./v -o vc/v.c -os cross cmd/v
|
|
|
|
./v -o vc/v_win.c -os windows cmd/v
|
|
|
|
|
|
|
|
sed -i "1s/^/#define V_COMMIT_HASH \"$COMMIT_HASH\"\n/" vc/v.c
|
|
|
|
sed -i "1s/^/#define V_COMMIT_HASH \"$COMMIT_HASH\"\n/" vc/v_win.c
|
|
|
|
|
|
|
|
# ensure the C files are over 5000 lines long, as a safety measure
|
|
|
|
[ $(wc -l < vc/v.c) -gt 5000 ]
|
|
|
|
[ $(wc -l < vc/v_win.c) -gt 5000 ]
|
|
|
|
|
|
|
|
git -C vc add v.c v_win.c
|
|
|
|
git -C vc commit -m "[v:master] $COMMIT_HASH - $COMMIT_MSG"
|
|
|
|
|
2021-04-07 14:43:15 +02:00
|
|
|
git -C vc pull --rebase origin master # in case there are recent commits
|
2021-04-04 20:52:27 +02:00
|
|
|
git -C vc push
|