Skip to content

Commit

Permalink
Move git checkout after deps install
Browse files Browse the repository at this point in the history
  • Loading branch information
1tnguyen committed Jun 27, 2023
1 parent b924ce5 commit 29766e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,16 @@ jobs:
image: ${{matrix.image}}

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install dependencies
run: |
dnf -y update && dnf install -y yum-utils && dnf config-manager --set-enabled crb && dnf install -y epel-release
yum groupinstall -y 'Development Tools'
yum install -y libcurl-devel.x86_64 openssl-devel.x86_64 cmake.x86_64 python3-devel.x86_64 lapack-devel.x86_64 libunwind-devel.x86_64 ninja-build.x86_64
- uses: actions/checkout@v3
with:
submodules: recursive

# Declares the repository safe and not under dubious ownership.
- name: Add repository to git safe directories
run: git config --global --add safe.directory $GITHUB_WORKSPACE
Expand Down

0 comments on commit 29766e7

Please sign in to comment.