summaryrefslogtreecommitdiffstats
path: root/.github/workflows/tailer-ape.yml
blob: e48750787a89008f5a13d7befa31bd2eae5b7953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: tailer-ape

on:
  push:
    branches: [ master ]
    paths-ignore:
      - docs
      - README.md
      - NEWS.md

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: update apt
        run: sudo apt-get update
      - name: Install packages
        run: >-
          wget https://github.com/tstack/cosmopolitan/releases/download/v1.0stack/cosmopolitan-amalgamation-1.0-stack.zip &&
          unzip cosmopolitan-amalgamation-1.0-stack.zip
      - name: Build
        run: >-
          gcc -g -Os -static -nostdlib -nostdinc -fno-pie -no-pie -mno-red-zone
          -fno-omit-frame-pointer -pg -mnop-mcount
          -o tailer.dbg -I src/tailer
          src/tailer/tailer.main.c src/tailer/tailer.c src/tailer/sha-256.c
          -fuse-ld=bfd -Wl,-T,ape.lds
          -include cosmopolitan.h crt.o ape.o cosmopolitan.a
      - name: Objcopy
        run: objcopy -S -O binary tailer.dbg src/tailer/tailer.ape
      - uses: stefanzweifel/git-auto-commit-action@v4
        with:
          # Optional, but recommended
          # Defaults to "Apply automatic changes"
          commit_message: Update tailer
          file_pattern: src/tailer/tailer.ape