Browse Source

Update TagBot.yml and remove warning from juliac compilation

pull/67/head
Fredrik Ekre 1 year ago
parent
commit
d9ad8b9143
No known key found for this signature in database
GPG Key ID: DE82E6D5E364C0A2
  1. 10
      .github/workflows/TagBot.yml
  2. 2
      juliac/Makefile

10
.github/workflows/TagBot.yml

@ -27,15 +27,5 @@ jobs: @@ -27,15 +27,5 @@ jobs:
steps:
- uses: JuliaRegistries/TagBot@v1
with:
changelog: |
{% if custom %}
{{ custom }}
{% endif %}
See [`CHANGELOG.md`](https://github.com/fredrikekre/Prometheus.jl/blob/master/CHANGELOG.md) for notable changes.
{% if previous_release %}
[Diff since {{ previous_release }}]({{ compare_url }})
{% endif %}
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}

2
juliac/Makefile

@ -4,7 +4,7 @@ JULIAC ?= $(shell $(JULIA) -e 'print(normpath(joinpath(Sys.BINDIR, Base.DATAROOT @@ -4,7 +4,7 @@ JULIAC ?= $(shell $(JULIA) -e 'print(normpath(joinpath(Sys.BINDIR, Base.DATAROOT
RUNIC_FILES := $(wildcard ../src/*.jl) ../Project.toml
runicc: runicc.jl Project.toml Manifest.toml $(RUNIC_FILES) check-julia
$(JULIA) --project=. $(JULIAC) --output-exe $@ --trim=unsafe-warn $<
$(JULIA) --project=. $(JULIAC) --output-exe $@ --trim=unsafe $<
Manifest.toml: Project.toml ../Project.toml
$(JULIA) --project=. -e 'using Pkg; Pkg.instantiate()'

Loading…
Cancel
Save