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

fixup! make the next Enzyme tag 1.6 only #153

Merged
merged 4 commits into from
Mar 23, 2021
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
10 changes: 5 additions & 5 deletions .github/workflows/tagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
run: |
cd ygg
git rm -rf E/Enzyme
mkdir -p E/Enzyme/Enzyme@9
mkdir -p E/Enzyme/Enzyme@11
cd E/Enzyme
cp ../../../enz/.packaging/build_tarballs.jl Enzyme@9/build_tarballs.jl
sed "s~%ENZYME_VERSION%~${GITHUB_REF}~g" Enzyme@9/build_tarballs.jl -i
sed "s~%ENZYME_HASH%~${GITHUB_SHA}~g" Enzyme@9/build_tarballs.jl -i
git add Enzyme@9
vchuravy marked this conversation as resolved.
Show resolved Hide resolved
cp ../../../enz/.packaging/build_tarballs.jl Enzyme@11/build_tarballs.jl
sed "s~%ENZYME_VERSION%~${GITHUB_REF}~g" Enzyme@11/build_tarballs.jl -i
sed "s~%ENZYME_HASH%~${GITHUB_SHA}~g" Enzyme@11/build_tarballs.jl -i
git add Enzyme@11
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v3
Expand Down
2 changes: 1 addition & 1 deletion .packaging/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ninja -C build -j ${nproc} install

# The products that we will ensure are always built
products = Product[
LibraryProduct(["libEnzyme-9", "libEnzyme"], :libEnzyme),
LibraryProduct(["libEnzyme-11", "libEnzyme"], :libEnzyme),
]

dependencies = [
Expand Down