Skip to content

Commit

Permalink
[Artifacts] Note the platform we're looking for in our error message (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Dec 22, 2020
1 parent c708ca2 commit 549a73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/Artifacts/src/Artifacts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ function artifact_slash_lookup(name::String, artifact_dict::Dict,

meta = artifact_meta(artifact_name, artifact_dict, artifacts_toml; platform)
if meta === nothing
error("Cannot locate artifact '$(name)' in '$(artifacts_toml)'")
error("Cannot locate artifact '$(name)' for $(triplet(platform)) in '$(artifacts_toml)'")
end
hash = SHA1(meta["git-tree-sha1"])
return artifact_name, artifact_path_tail, hash
Expand Down

4 comments on commit 549a73b

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Your benchmark job has completed - successfully executed benchmarks. A full report can be found here. cc @christopher-dG

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Your package evaluation job has completed - possible new issues were detected. A full report can be found here. cc @maleadt

Please sign in to comment.