Skip to content
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

Logs to investigate babel str sycl seg fault #2463

Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update GitHub Action checkout action to v4
  • Loading branch information
SimeonEhrig authored and mehmetyusufoglu committed Jan 24, 2025
commit dd0e799018dd49cf970a7f8d9c5e9de47e1aff3d
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ jobs:
clang-format:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: DoozyX/clang-format-lint-action@v0.16.2
with:
clangFormatVersion: 16
exclude: './thirdParty'
inplace: True
- run: |
git diff --exit-code > format.patch
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: format.patch
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- name: check filter
if: (contains(github.event.head_commit.message, 'ci_filter') && !contains(github.event.head_commit.message, matrix.name ))
run: exit 1
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Print the environment variables in an additional step so that the environment variables can be displayed if the job is still running.
# Call ./script/set_default_env_vars.sh in each step, as the environment variables are not shared between the steps by default.
- name: print environment variables
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/single-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
single-header:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: clone single-header
run: |
git clone -b single-header --single-branch https://x-access-token:${{secrets.github_token}}@github.com/${{github.repository}}.git single-header
Expand Down