Skip to content

Commit

Permalink
BUILD: Minor metadata edits
Browse files Browse the repository at this point in the history
  • Loading branch information
tmasthay committed May 30, 2024
1 parent adcbf48 commit 23a61b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/julia/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = v"1.0.0"

# Collection of sources required to complete build
sources = [
GitSource("https://github.com/ahay/src.git", "4383bfde1224bf001bab0bda1f9a66b08c83c0f3")
GitSource("https://github.com/ahay/src.git", "635f797644c2208e445e488bf32bb39ab65f9627")
]

# Bash recipe for building across all platforms
Expand Down
5 changes: 3 additions & 2 deletions api/julia/ubuntu_build.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
#!/bin/bash

# Check if we are on ubuntu
lsb_release -a | grep "Ubuntu" || exit 1
# lsb_release -a | grep "Ubuntu" || exit 1
UBUNTU_VERSION=$(lsb_release -r | awk '{print $2}')

# Get the git hash
GIT_HASH=$(git rev-parse HEAD)
GIT_URL="https://github.com/ahay/src.git"
GIT_HASH=$(git ls-remote $GIT_URL HEAD | awk '{print $1}')

cd ../..

Expand Down

0 comments on commit 23a61b2

Please sign in to comment.