-
Notifications
You must be signed in to change notification settings - Fork 8
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
WIP CI workflow #10
base: main
Are you sure you want to change the base?
WIP CI workflow #10
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job. Just a few changes to see if it works
julia --project -e 'using Pkg; Pkg.instantiate();' | ||
|
||
- name: Test | ||
run: julia --project test/runtest.jl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing extra blank line
- name: Instantiate | ||
run: | | ||
echo $GITHUB_WORKSPACE | ||
cd $GITHUB_WORKSPACE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we might have direct to the $GITHUB_WORKSPACE/julia/GemmDenseThreads
directory. GitHub Actions has a working-directory
entry . So let's try adding working-directory: $GITHUB_WORKSPACE/julia/GemmDenseThreads
before run:
and remove this line
julia --project -e 'using Pkg; Pkg.instantiate();' | ||
|
||
- name: Test | ||
run: julia --project test/runtest.jl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
julia --project test/runtest.jl
use threads: julia -t 2 --project test/runtest.jl
Maybe also delete and git ignore the |
WIP CI workflow for Julia file GemmDenseThreads.