Skip to content

Commit

Permalink
Update Jenkinsfile
Browse files Browse the repository at this point in the history
  - Activate package, build and test
  - Pkg.REPLMode.pkgstr kept failing on Jenkins for unknown reason
  • Loading branch information
AnHeuermann committed Feb 21, 2023
1 parent cf85267 commit b862032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .CI/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ pipeline {
sh 'hostname'
sh '(cd /home/julia && tar xf /home/julia.tar)'
sh 'test -d $HOME/.julia/compiled/v1.0/PEG/'
sh 'julia -e "using Pkg; Pkg.REPLMode.pkgstr(\\"add $PWD\\");"'
sh 'julia -e "using Pkg; Pkg.test(\\"OMJulia\\", coverage=true)"'
sh 'julia -e "using Pkg; Pkg.activate(\\".\\"); Pkg.build();"'
sh 'julia -e "using Pkg; Pkg.activate(\\".\\"); Pkg.test(\\"OMJulia\\", coverage=true);"'
}
}
}
Expand Down

2 comments on commit b862032

@AnHeuermann
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/78188

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" b8620325e930faa3b0cbed4bee2a4e362075eeb5
git push origin v0.2.0

Please sign in to comment.