Skip to content

Commit

Permalink
Add pack workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mintsuki committed Aug 10, 2024
1 parent dd20f38 commit 8b9abaa
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Pack cc-runtime

on: [push]

jobs:
pack:
name: Pack cc-runtime
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Pack cc-runtime
run: |
set -e
cat assembly.h int_endianness.h int_types.h int_lib.h int_util.h $(find . -name *.c | LC_ALL=C sort) > /tmp/cc-runtime.c
grep '#include <' /tmp/cc-runtime.c > /tmp/saved-includes
sed -i '/#include/d' /tmp/cc-runtime.c
cat /tmp/saved-includes /tmp/cc-runtime.c > /tmp/cc-runtime.c.tmp
mv /tmp/cc-runtime.c.tmp /tmp/cc-runtime.c
- name: Push packed cc-runtime
run: |
set -ex
git config user.name 'mintsuki'
git config user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/osdev0/cc-runtime.git
git fetch --all
git checkout packed || git checkout --orphan packed
rm -rf .github *.c *.h *.inc
mv /tmp/cc-runtime.c ./
git add -f .
git commit -m "Push packed cc-runtime.c"
git push origin packed

0 comments on commit 8b9abaa

Please sign in to comment.