Skip to content

Commit

Permalink
Corrected the Position of StaticArrays Package Install in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Ananya2003Gupta committed Sep 27, 2023
1 parent 311a9e8 commit 589f952
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sanitizers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
echo "::group::Build"
ninja -k0
echo "::endgroup::"
echo "::group::Julia StaticArrays Package Install"
julia -e 'import Pkg; Pkg.add("StaticArrays")'
echo "::endgroup"
echo "::group::Run tests"
ctest --output-on-failure
echo "::endgroup::"
- name: Install StaticArrays Julia Package
run: julia -e 'import Pkg; Pkg.add("StaticArrays")'
echo "::endgroup::"
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
echo "::group::Build"
ninja -k0
echo "::endgroup"
echo "::group::Julia StaticArrays Package Install"
julia -e 'import Pkg; Pkg.add("StaticArrays")'
echo "::endgroup"
echo "::group::Run tests"
ctest --output-on-failure
echo "::endgroup::"
echo "::group::Install"
ninja install
echo "::endgroup::"
- name: Install StaticArrays Julia Package
run: julia -e 'import Pkg; Pkg.add("StaticArrays")'
echo "::endgroup::"
8 changes: 4 additions & 4 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
echo "::group::Build"
ninja -k0
echo "::endgroup"
echo "::group::Julia StaticArrays Package Install"
julia -e 'import Pkg; Pkg.add("StaticArrays")'
echo "::endgroup"
echo "::group::Run tests"
ctest --output-on-failure
echo "::endgroup::"
echo "::group::Install"
ninja install
echo "::endgroup::"
- name: Install StaticArrays Julia Package
run: julia -e 'import Pkg; Pkg.add("StaticArrays")'
echo "::endgroup::"

0 comments on commit 589f952

Please sign in to comment.