Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to instantiate InventoryItem on 32bit system #3

Merged
merged 1 commit into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,15 @@ jobs:
- title: 'Linux - Latest'
os: ubuntu-latest
version: '1'
arch: x64
- title: 'Windows - Latest'
os: windows-latest
version: '1'
arch: x64
- title: 'Linux - 32bit'
os: ubuntu-latest
version: '1'
arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DocInventories"
uuid = "43dc2714-ed3b-44b5-b226-857eda1aa7de"
authors = ["Michael Goerz <[email protected]>"]
version = "0.3.0"
version = "0.3.0+dev"

[deps]
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
Expand Down
4 changes: 2 additions & 2 deletions src/inventory_item.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ struct InventoryItem
name::String
domain::String
role::String
priority::Int64
priority::Int
uri::String
dispname::String

function InventoryItem(
name::AbstractString,
domain::AbstractString,
role::AbstractString,
priority::Int64,
priority::Int,
uri::AbstractString,
dispname::AbstractString
)
Expand Down
Loading