Skip to content

Reduce warnings ci #236

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

Merged
merged 3 commits into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 10 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ jobs:
cppyy: On

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand All @@ -133,8 +133,6 @@ jobs:
echo "CLING_HASH=$CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$LLVM_HASH" >> $GITHUB_ENV

- uses: nelonoel/[email protected]

- name: Save PR Info on Windows systems
if: ${{ runner.os == 'windows' }}
run: |
Expand Down Expand Up @@ -162,8 +160,6 @@ jobs:

echo "CLING_HASH=$env:CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$env:LLVM_HASH" >> $GITHUB_ENV

- uses: nelonoel/[email protected]

- name: Setup default Build Type on *nux
if: runner.os != 'windows'
Expand Down Expand Up @@ -273,7 +269,7 @@ jobs:
brew upgrade

- name: Restore Cache LLVM/Clang runtime build directory
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: cache
with:
path: |
Expand Down Expand Up @@ -416,7 +412,7 @@ jobs:
cd ../../

- name: Save Cache LLVM/Clang runtime build directory
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
path: |
Expand Down Expand Up @@ -653,11 +649,11 @@ jobs:
xeus-clang-repl: On

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand All @@ -682,8 +678,6 @@ jobs:
echo "CLING_HASH=$CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$LLVM_HASH" >> $GITHUB_ENV

- uses: nelonoel/[email protected]

- name: Save PR Info on Windows systems
if: ${{ runner.os == 'windows' }}
run: |
Expand Down Expand Up @@ -711,8 +705,6 @@ jobs:

echo "CLING_HASH=$env:CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$env:LLVM_HASH" >> $GITHUB_ENV

- uses: nelonoel/[email protected]

- name: Setup default Build Type on *nux
if: runner.os != 'windows'
Expand Down Expand Up @@ -824,7 +816,7 @@ jobs:
pip install distro pytest

- name: Restore Cache LLVM/Clang runtime build directory
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: cache
with:
path: |
Expand Down Expand Up @@ -1245,11 +1237,11 @@ jobs:
cling-version: '1.0'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand All @@ -1274,8 +1266,6 @@ jobs:
echo "CLING_HASH=$CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$LLVM_HASH" >> $GITHUB_ENV

- uses: nelonoel/[email protected]

- name: Setup default Build Type on *nux
if: runner.os != 'windows'
run: |
Expand Down Expand Up @@ -1309,7 +1299,7 @@ jobs:
emsdk install 3.1.45

- name: Restore Cache LLVM/Clang runtime build directory
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: cache
with:
path: |
Expand Down
Loading