Skip to content

Commit

Permalink
Change handling of local dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Lemmens committed Jul 13, 2024
1 parent c3462b0 commit 0c8ed75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/TestXmlStructLoader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ jobs:
version: ${{ inputs.version }}
arch: ${{ inputs.arch }}
- uses: julia-actions/cache@v2
- name: Install local AbstractXsdTypes for XsdToStruct
run: julia --project=XsdToStruct.jl -e 'using Pkg; Pkg.develop(path="AbstractXsdTypes.jl");'
- name: Install local AbstractXsdTypes
run: julia --project=XmlStructLoader.jl -e 'using Pkg; Pkg.develop(path="AbstractXsdTypes.jl");'
run: julia --project=XmlStructLoader.jl -e 'using Pkg; Pkg.add(path=".", subdir="AbstractXsdTypes.jl");'
- name: Install local XsdToStruct
run: julia --project=XmlStructLoader.jl/test -e 'using Pkg; Pkg.develop(path="XsdToStruct.jl");'
run: julia --project=XmlStructLoader.jl -e 'using Pkg; Pkg.add(path=".", subdir="XsdToStruct.jl");'
- uses: julia-actions/julia-buildpkg@v1
with:
project: XmlStructLoader.jl
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/TestXmlStructWriter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
arch: ${{ inputs.arch }}
- uses: julia-actions/cache@v2
- name: Install local AbstractXsdTypes
run: julia --project=XmlStructWriter.jl -e 'using Pkg; Pkg.develop(path="AbstractXsdTypes.jl");'
run: julia --project=XmlStructWriter.jl -e 'using Pkg; Pkg.add(path=".", subdir="AbstractXsdTypes.jl");'
- name: Install local XsdToStruct
run: julia --project=XmlStructWriter.jl/test -e 'using Pkg; Pkg.develop(path="XsdToStruct.jl");'
run: julia --project=XmlStructWriter.jl -e 'using Pkg; Pkg.add(path=".", subdir="XsdToStruct.jl");'
- name: Install local XmlStructLoader
run: julia --project=XmlStructWriter.jl/test -e 'using Pkg; Pkg.develop(path="XmlStructLoader.jl");'
run: julia --project=XmlStructWriter.jl -e 'using Pkg; Pkg.add(path=".", subdir="XmlStructLoader.jl");'
- uses: julia-actions/julia-buildpkg@v1
with:
project: XmlStructWriter.jl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/TestXsdToStruct.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
arch: ${{ inputs.arch }}
- uses: julia-actions/cache@v2
- name: Install local AbstractXsdTypes
run: julia --project=XsdToStruct.jl -e 'using Pkg; Pkg.develop(path="AbstractXsdTypes.jl");'
run: julia --project=XsdToStruct.jl -e 'using Pkg; Pkg.add(path=".", subdir="AbstractXsdTypes.jl");'
- uses: julia-actions/julia-buildpkg@v1
with:
project: XsdToStruct.jl
Expand Down

0 comments on commit 0c8ed75

Please sign in to comment.