2020-12-02 12:33:47 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
vars:
|
|
|
|
DEBUG_PORT: 2345
|
|
|
|
REVEALJS_VERSION: 4.1.0
|
|
|
|
BINARY_NAME: goveal
|
|
|
|
OUT_DIR: ./out
|
|
|
|
GO_BUILD_ARGS: -ldflags="-w -s"
|
|
|
|
CMD_PACKAGE: github.com/baez90/go-reveal-slides/cmd/goveal
|
|
|
|
|
|
|
|
emv:
|
|
|
|
CGO_ENABLED: 0
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
clean:
|
|
|
|
cmds:
|
|
|
|
- rm -f debug {{ .BINARY_NAME }}
|
|
|
|
- rm -rf ./dist {{ .OUT_DIR }}
|
|
|
|
- pkger clean
|
|
|
|
|
|
|
|
format:
|
|
|
|
cmds:
|
|
|
|
- go fmt ./...
|
|
|
|
|
|
|
|
deps:
|
|
|
|
sources:
|
|
|
|
- go.mod
|
|
|
|
- go.sum
|
|
|
|
cmds:
|
|
|
|
- go mod download
|
|
|
|
- go mod tidy
|
|
|
|
|
2020-12-04 15:28:02 +00:00
|
|
|
assets:
|
|
|
|
sources:
|
|
|
|
- ./assets/**/*
|
|
|
|
cmds:
|
|
|
|
- pkger
|
|
|
|
|
2020-12-02 12:33:47 +00:00
|
|
|
test:
|
|
|
|
sources:
|
|
|
|
- ./**/*.go
|
|
|
|
deps:
|
|
|
|
- deps
|
|
|
|
cmds:
|
2020-12-02 12:37:09 +00:00
|
|
|
- mkdir -p {{ .OUT_DIR }}
|
2020-12-02 12:33:47 +00:00
|
|
|
- go test -coverprofile={{ .OUT_DIR }}/cov-raw.out -v ./...
|
|
|
|
- cat {{ .OUT_DIR }}/cov-raw.out | grep -v "generated" > {{ .OUT_DIR }}/cov.out
|
|
|
|
|
|
|
|
cli-cover-report:
|
2020-12-02 12:37:09 +00:00
|
|
|
deps:
|
|
|
|
- test
|
2020-12-02 12:33:47 +00:00
|
|
|
cmds:
|
|
|
|
- go tool cover -func={{ .OUT_DIR }}/cov.out
|
|
|
|
|
|
|
|
html-cover-report:
|
2020-12-02 12:37:09 +00:00
|
|
|
deps:
|
|
|
|
- test
|
2020-12-02 12:33:47 +00:00
|
|
|
cmds:
|
|
|
|
- go tool cover -html={{ .OUT_DIR }}/cov.out -o {{ .OUT_DIR }}/coverage.html
|
|
|
|
|
|
|
|
build:
|
|
|
|
deps:
|
|
|
|
- deps
|
2020-12-04 15:28:02 +00:00
|
|
|
- assets
|
2020-12-02 12:33:47 +00:00
|
|
|
sources:
|
|
|
|
- ./**/*.go
|
|
|
|
cmds:
|
|
|
|
- go build {{ .GO_BUILD_ARGS }} -o {{ .BINARY_NAME }} {{ .CMD_PACKAGE }}
|
|
|
|
|
|
|
|
run:
|
|
|
|
deps:
|
|
|
|
- deps
|
2020-12-04 15:28:02 +00:00
|
|
|
- assets
|
2020-12-02 12:33:47 +00:00
|
|
|
cmds:
|
2020-12-04 15:28:02 +00:00
|
|
|
- go run {{ .CMD_PACKAGE }} serve ./examples/slides.md --config ./examples/goveal.yaml
|
2020-12-02 12:33:47 +00:00
|
|
|
|
|
|
|
debug:
|
|
|
|
cmds:
|
|
|
|
- dlv debug --headless --listen=127.10.10.2:{{ .DEBUG_PORT }} --api-version=2 {{ .CMD_PACKAGE }} --build-flags="-tags debug" -- serve --config ./examples/goveal.yaml ./examples/slides.md
|
|
|
|
|
|
|
|
snapshot-release:
|
2020-12-04 15:28:02 +00:00
|
|
|
deps:
|
|
|
|
- assets
|
2020-12-02 12:33:47 +00:00
|
|
|
cmds:
|
|
|
|
- goreleaser --snapshot --skip-publish --rm-dist
|
|
|
|
|
|
|
|
tools:
|
|
|
|
cmds:
|
|
|
|
- go get -u github.com/markbates/pkger/cmd/pkger
|
|
|
|
|
|
|
|
download-reveal:
|
|
|
|
cmds:
|
|
|
|
- rm -rf ./assets/reveal
|
|
|
|
- mkdir -p ./assets/reveal
|
2020-12-04 15:28:02 +00:00
|
|
|
- curl -sL https://github.com/hakimel/reveal.js/archive/{{ .REVEALJS_VERSION }}.tar.gz | tar -xvz --strip-components=1 -C ./assets/reveal --wildcards "*.js" --wildcards "*.css" --wildcards "*.html" --wildcards "*.woff" --wildcards "*.ttf" --exclude "test" --exclude "gulpfile.js" --exclude "gruntfile.js" --exclude "demo.html" --exclude "index.html" --exclude "examples/*.html"
|
2020-12-02 12:33:47 +00:00
|
|
|
- mkdir -p ./assets/reveal/plugin/menu ./assets/reveal/plugin/mouse-pointer
|
|
|
|
- git clone https://github.com/denehyg/reveal.js-menu.git ./assets/reveal/plugin/menu
|
|
|
|
- curl -L -o ./assets/reveal/plugin/mouse-pointer/mouse-pointer.js https://raw.githubusercontent.com/caiofcm/plugin-revealjs-mouse-pointer/master/mouse-pointer.js
|
2020-12-04 15:28:02 +00:00
|
|
|
- rm -f ./assets/reveal/plugin/menu/{bower.json,CONTRIBUTING.md,LICENSE,package.json,README.md,.gitignore,gulpfile.js,package-lock.json}
|
|
|
|
- curl -L https://github.com/highlightjs/highlight.js/archive/10.4.0.tar.gz | tar -xvz --strip-components=3 -C ./assets/reveal/plugin/highlight --wildcards "*.css" highlight.js-10.4.0/src/styles/
|