Skip to content

Commit

Permalink
[infra] Remove .gitattributes; normalize symengine conanfile line e…
Browse files Browse the repository at this point in the history
…ndings on Windows (#233)
  • Loading branch information
cqc-alec authored Feb 17, 2022
1 parent b9752c6 commit 0586960
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .gitattributes

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/build_symengine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ jobs:
run: pip install conan
- name: create profile
run: conan profile new tket --detect
- name: normalize line endings in conanfile
run: |
$conanfile ='recipes/symengine/conanfile.py'
$normalized_file = [IO.File]::ReadAllText($conanfile) -replace "`r`n", "`n"
[IO.File]::WriteAllText($conanfile, $normalized_file)
- name: build symengine
run: conan create --profile=tket -s build_type=${{ matrix.build_type }} -o symengine:shared=${{ matrix.shared }} recipes/symengine tket/stable
- name: add remote
Expand Down

0 comments on commit 0586960

Please sign in to comment.