Skip to content

Commit

Permalink
Merge pull request #107 from aviks/as/jll
Browse files Browse the repository at this point in the history
Move to using jlls
  • Loading branch information
omus authored Mar 27, 2020
2 parents 666caa7 + 768d387 commit 2b5a2fb
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 124 deletions.
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ task:
name: FreeBSD
env:
matrix:
- JULIA_VERSION: 1.0
- JULIA_VERSION: 1.2
- JULIA_VERSION: 1.3
- JULIA_VERSION: 1.4
- JULIA_VERSION: nightly
allow_failures: $JULIA_VERSION == "nightly"
install_script:
Expand Down
16 changes: 8 additions & 8 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
kind: pipeline
name: linux-arm-1.0
name: linux-arm-1.3

platform:
os: linux
arch: arm

steps:
- name: build
image: julia:1.0
image: julia:1.3
commands:
- uname -a
- julia --project=. -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'

---

kind: pipeline
name: linux-aarch64-1.0
name: linux-aarch64-1.3

platform:
os: linux
arch: arm64

steps:
- name: build
image: julia:1.0
image: julia:1.3
commands:
- uname -a
- julia --project=. -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'

---

kind: pipeline
name: linux-arm-1.2
name: linux-arm-1.4

platform:
os: linux
arch: arm

steps:
- name: build
image: julia:1.2
image: julia:1.4
commands:
- uname -a
- julia --project=. -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'

---

kind: pipeline
name: linux-aarch64-1.2
name: linux-aarch64-1.4

platform:
os: linux
arch: arm64

steps:
- name: build
image: julia:1.2
image: julia:1.4
commands:
- uname -a
- julia --project=. -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ os:
- linux
- osx
julia:
- 1.0
- 1.2
- 1.3
- 1.4
- nightly
notifications:
email: false
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "LightXML"
uuid = "9c8b4983-aa76-5018-a973-4c85ecc9e179"
version = "0.8.1"
version = "0.9.0"

[deps]
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
XML2_jll = "02c8fc9c-b97f-50b9-bbe4-9be30ff0a78a"

[compat]
julia = "0.7, 1"
julia = "1.3"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- julia_version: 1
- julia_version: 1.2
- julia_version: 1.3
- julia_version: 1.4
- julia_version: nightly

platform:
Expand Down
2 changes: 0 additions & 2 deletions deps/build.jl

This file was deleted.

48 changes: 0 additions & 48 deletions deps/build_XML2Builder.v2.9.9.jl

This file was deleted.

48 changes: 0 additions & 48 deletions deps/build_Zlib.v1.2.11.jl

This file was deleted.

10 changes: 1 addition & 9 deletions src/LightXML.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@

module LightXML

let depsfile = joinpath(@__DIR__, "..", "deps", "deps.jl")
if !isfile(depsfile)
error("LightXML is not properly installed. Run `Pkg.build(\"LightXML\")` and " *
"restart Julia.")
end
include(depsfile)
end
check_deps()
using XML2_jll

export
# common
Expand Down

4 comments on commit 2b5a2fb

@omus
Copy link
Member Author

@omus omus commented on 2b5a2fb Mar 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: Register Failed
@omus, it looks like you are not a publicly listed member/owner in the parent organization (JuliaIO).
If you are a member/owner, you will need to change your membership to public. See GitHub Help

@omus
Copy link
Member Author

@omus omus commented on 2b5a2fb Mar 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/11663

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.0 -m "<description of version>" 2b5a2fbdc1246776d62d67450ee13759a637007b
git push origin v0.9.0

Please sign in to comment.