Skip to content

Commit

Permalink
Add a local build for plugin compiler taskfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Tit Petric authored and titpetric committed Oct 3, 2023
1 parent 3f9ed92 commit 60dd100
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
version: "3"

tasks:
plugin-compiler:
desc: "Build and test plugin compiler"
cmds:
- task: plugin-compiler:build
- task: plugin-compiler:test

plugin-compiler:build:
desc: "Build plugin compiler"
cmds:
- docker build -t internal/plugin-compiler -f ci/images/plugin-compiler/Dockerfile .

plugin-compiler:test:
desc: "Test plugin compiler"
cmds:
- echo "Not implemented"

0 comments on commit 60dd100

Please sign in to comment.