Skip to content

Commit c127839

Browse files
committed
fix CI
1 parent 13c094a commit c127839

File tree

5 files changed

+24
-1
lines changed

5 files changed

+24
-1
lines changed

.github/workflows/darshan-3.4.2.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
30+
31+
- name: Upgrade pip, setuptools, and wheel
32+
if: matrix.python-version == '3.12'
33+
run: python -m pip install --upgrade pip setuptools wheel
34+
3035
- name: Dependencies
3136
run: |
3237
git clone https://github.com/darshan-hpc/darshan.git

.github/workflows/darshan-3.4.4.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
30+
31+
- name: Upgrade pip, setuptools, and wheel
32+
if: matrix.python-version == '3.12'
33+
run: python -m pip install --upgrade pip setuptools wheel
34+
3035
- name: Dependencies
3136
run: |
3237
git clone https://github.com/darshan-hpc/darshan.git

.github/workflows/darshan-3.4.6.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
30+
31+
- name: Upgrade pip, setuptools, and wheel
32+
if: matrix.python-version == '3.12'
33+
run: python -m pip install --upgrade pip setuptools wheel
34+
3035
- name: Dependencies
3136
run: |
3237
git clone https://github.com/darshan-hpc/darshan.git

.github/workflows/darshan-3.4.7.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
30+
31+
- name: Upgrade pip, setuptools, and wheel
32+
if: matrix.python-version == '3.12'
33+
run: python -m pip install --upgrade pip setuptools wheel
34+
3035
- name: Dependencies
3136
run: |
3237
git clone https://github.com/darshan-hpc/darshan.git

.github/workflows/lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
13+
1314
- uses: actions/setup-python@v2
1415
with:
1516
python-version: "3.9"
17+
1618
- name: Run flake8
1719
uses: julianwachholz/flake8-action@v2
1820
env:
19-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
continue-on-error: true

0 commit comments

Comments
 (0)