Skip to content

Commit

Permalink
work on CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gulrak committed Dec 12, 2023
1 parent 7c92781 commit 64839f4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ jobs:
}

steps:
- uses: actions/checkout@v1

- uses: actions/checkout@v3

- name: Install dependencies
run: |
Expand Down Expand Up @@ -161,6 +160,7 @@ jobs:

- name: Get package name (win)
if: ${{ runner.os == 'Windows' }}
shell: python
run: |
import os
import re
Expand All @@ -172,8 +172,7 @@ jobs:
for line in f:
m = p.match(line)
if m:
env.write(entry.format(m.group(1)))
print(entry.format(m.group(1)), file=env)
- name: Get package name (non-win)
if: ${{ runner.os != 'Windows' }}
run: |
Expand Down

0 comments on commit 64839f4

Please sign in to comment.