Skip to content

Commit

Permalink
remove GitLab CI formatter job
Browse files Browse the repository at this point in the history
  • Loading branch information
SimeonEhrig committed Oct 10, 2023
1 parent c1b7a21 commit 15b2831
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 16 deletions.
14 changes: 0 additions & 14 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,9 @@
stages:
- linter
- unit-test
- generate_integration_test
- run_integration_test
- verify-unit-test-deps

format:
stage: linter
image: julia:1.9
script:
- "[[ -d .julia ]] && mv .julia /tmp"
- julia --project=.formatting -e 'import Pkg; Pkg.instantiate()'
- julia --project=.formatting .formatting/format_all.jl
- "[[ -d /tmp/.julia ]] && mv /tmp/.julia ."
variables:
CI_JULIA_VERSION: "1.9"
JULIA_DEPOT_PATH: /tmp/.julia
allow_failure: true

unit_tests_julia1.9:
image: julia:1.9
stage: unit-test
Expand Down
3 changes: 1 addition & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using Pkg
# targeting the correct source code
# this asumes the make.jl script is located in QEDbase.jl/docs
project_path = Base.Filesystem.joinpath(Base.Filesystem.dirname(Base.source_path()), "..")
Pkg.develop(path=project_path)
Pkg.develop(; path=project_path)

using Documenter
using QEDbase
Expand All @@ -13,7 +13,6 @@ using QEDbase

using DocumenterCitations


bib = CitationBibliography(joinpath(@__DIR__, "Bibliography.bib"))

pages = [
Expand Down

0 comments on commit 15b2831

Please sign in to comment.