File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,10 +17,12 @@ jobs:
1717 - falco-libs
1818 steps :
1919 - uses : actions/checkout@v3
20+ - uses : taiki-e/install-action@just
21+
2022
2123 - name : Build
2224 run : |
23- make -C ${{ matrix.image }} build
25+ just ${{ matrix.image }}/ build
2426
2527 - name : Login to Quay.io
2628 if : github.event_name != 'pull_request'
3335 - name : Build and push
3436 if : github.event_name != 'pull_request'
3537 run : |
36- make -C ${{ matrix.image }} push
38+ just ${{ matrix.image }}/ push
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ builder-image := " quay.io/mmoltras/devcontainers:collector"
2+
3+ build :
4+ docker build \
5+ - -tag {{ builder-image}} \
6+ - f Containerfile \
7+ ` pwd `
8+
9+ push :
10+ docker push {{ builder-image}}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ image := " quay.io/mmoltras/devcontainers:falco-libs"
2+ template := ` pwd ` / ' clangd.tpl.yaml'
3+ clangd := ` pwd ` / ' clangd.yaml'
4+
5+ build : clang-config
6+ docker build \
7+ - -tag {{ image}} \
8+ - f Containerfile \
9+ ` pwd `
10+
11+ clang-config : clean
12+ @ envsubst < {{ template}} > {{ clangd}}
13+
14+ clean :
15+ @ rm -f {{ clangd}}
16+
17+ push :
18+ docker push {{ image}}
Original file line number Diff line number Diff line change 1+ all : collector falco clean deploy
2+
3+ collector :
4+ just collector/
5+
6+ falco :
7+ just falco-libs/
8+
9+ clean :
10+ kluars xlate ` pwd ` / lua | podman play kube --down -
11+
12+ deploy :
13+ kluars xlate ` pwd ` / lua | podman play kube -
You can’t perform that action at this time.
0 commit comments