Skip to content
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: 3 additions & 7 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ jobs:
with:
name: macos-natives
path: |
blas/target/native/macos-*/
lapack/target/native/macos-*/
arpack/target/native/macos-*/
*/target/native/macos-*/
if-no-files-found: error

build-jar:
Expand Down Expand Up @@ -63,7 +61,7 @@ jobs:
name: macos-natives
path: .
- name: Build
run: mvn --batch-mode compile test-compile process-classes jar:jar
run: mvn --batch-mode package -DskipTests
- name: Log content of jar files
run: |
for module in blas lapack arpack; do
Expand All @@ -75,9 +73,7 @@ jobs:
with:
name: target-dir
path: |
blas/target/
lapack/target/
arpack/target/
*/target/
if-no-files-found: error

test-linux:
Expand Down
18 changes: 6 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ jobs:
with:
name: macos-natives
path: |
blas/target/native/macos-*/
lapack/target/native/macos-*/
arpack/target/native/macos-*/
*/target/native/macos-*/
if-no-files-found: error

build-jar:
Expand Down Expand Up @@ -63,7 +61,7 @@ jobs:
name: macos-natives
path: .
- name: Build
run: mvn --batch-mode compile test-compile process-classes jar:jar
run: mvn --batch-mode package -DskipTests
- name: Log content of jar files
run: |
for module in blas lapack arpack; do
Expand All @@ -75,9 +73,7 @@ jobs:
with:
name: target-dir
path: |
blas/target/
lapack/target/
arpack/target/
*/target/
if-no-files-found: error

test-linux:
Expand Down Expand Up @@ -171,18 +167,16 @@ jobs:
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
- name: Publish to Sonatype OSSRH
run: mvn --batch-mode -DskipTests deploy
run: mvn --batch-mode -DskipTests -Dmaven.main.skip -Dmaven.install.skip -Dmaven.antrun.skip=true deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
name: ${{ github.ref }}
draft: true

benchmark:
Expand Down