Skip to content

Commit

Permalink
Add a file
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Oct 29, 2024
1 parent 7838c66 commit 4eb9747
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/julia/build_tarballs_yggdrasil.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ using BinaryBuilder, Pkg

haskey(ENV, "UNO_RELEASE") || error("The environment variable UNO_RELEASE is not defined.")
haskey(ENV, "UNO_COMMIT") || error("The environment variable UNO_COMMIT is not defined.")
haskey(ENV, "UNO_URL") || error("The environment variable UNO_URL is not defined.")

name = "Uno"
version = VersionNumber(ENV["UNO_RELEASE"])

# Collection of sources required to complete build
sources = [
GitSource("https://github.com/cvanaret/Uno.git",
ENV["UNO_COMMIT"])
GitSource(ENV["UNO_URL"], ENV["UNO_COMMIT"])
]

script = raw"""
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/julia-tests-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
echo "BINARYBUILDER_AUTOMATIC_APPLE=true" >> $GITHUB_ENV
echo "UNO_RELEASE=1.1.1" >> $GITHUB_ENV
echo "UNO_COMMIT=${{ github.sha }}" >> $GITHUB_ENV
echo "UNO_URL=https://github.com/${{ github.repository }}.git" >> $GITHUB_ENV
- name: Generate Uno_jll.jl
run: |
julia --color=yes -e 'using Pkg; Pkg.add("BinaryBuilder")'
Expand Down

0 comments on commit 4eb9747

Please sign in to comment.