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

Bump the github-actions group with 4 updates #19

Closed
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/clang-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
arch: amd64
- name: Install Ninja
uses: llvm/actions/install-ninja@main
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 250
- name: Test clang
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/libclang-abi-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
LLVM_VERSION_PATCH: ${{ steps.version.outputs.LLVM_VERSION_PATCH }}
steps:
- name: Checkout source
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
fetch-depth: 250

Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
sed -i 's/LLVM_${{ matrix.llvm_version_major }}/LLVM_NOVERSION/' $lib-${{ matrix.ref }}.abi
done
- name: Upload ABI file
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: "*${{ matrix.ref }}.abi"
Expand All @@ -127,11 +127,11 @@ jobs:
- abi-dump
steps:
- name: Download baseline
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: build-baseline
- name: Download latest
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: build-latest

Expand All @@ -144,7 +144,7 @@ jobs:
done
- name: Upload ABI Comparison
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: compat-report-${{ github.sha }}
path: compat_reports/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/libclc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
arch: amd64
- name: Install Ninja
uses: llvm/actions/install-ninja@main
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 250
- name: Build clang
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lld-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
arch: amd64
- name: Install Ninja
uses: llvm/actions/install-ninja@main
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 250
- name: Test lld
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lldb-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
arch: amd64
- name: Install Ninja
uses: llvm/actions/install-ninja@main
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 250
- name: Build lldb
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/llvm-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
arch: amd64
- name: Install Ninja
uses: llvm/actions/install-ninja@main
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 250
- name: Test llvm
Expand All @@ -50,7 +50,7 @@ jobs:
LLVM_VERSION_PATCH: ${{ steps.version.outputs.LLVM_VERSION_PATCH }}
steps:
- name: Checkout source
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
fetch-depth: 250

Expand Down Expand Up @@ -127,14 +127,14 @@ jobs:
# Remove symbol versioning from dumps, so we can compare across major versions.
sed -i 's/LLVM_${{ matrix.llvm_version_major }}/LLVM_NOVERSION/' ${{ matrix.ref }}.abi
- name: Upload ABI file
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ${{ matrix.ref }}.abi

- name: Upload symbol list file
if: matrix.name == 'build-baseline'
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: symbol-list
path: llvm.symbols
Expand All @@ -146,15 +146,15 @@ jobs:
- abi-dump
steps:
- name: Download baseline
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: build-baseline
- name: Download latest
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: build-latest
- name: Download symbol list
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: symbol-list

Expand All @@ -172,7 +172,7 @@ jobs:
abi-compliance-checker $EXTRA_ARGS -l libLLVM.so -old build-baseline/*.abi -new build-latest/*.abi || test "${{ needs.abi-dump-setup.outputs.ABI_HEADERS }}" = "llvm-c"
- name: Upload ABI Comparison
if: always()
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: compat-report-${{ github.sha }}
path: compat_reports/
10 changes: 5 additions & 5 deletions .github/workflows/patmos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
CC: gcc
CXX: g++
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build and Run LLVM Unit and Regression Tests
uses: ./.github/actions/build-test-all
with:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
CXX: ${{matrix.cxx}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/install-dependencies
- name: Build and Run LLVM Unit and Regression Tests
uses: ./.github/actions/build-test-all
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
CXX: ${{matrix.cxx}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/install-dependencies
- name: Build and Run LLVM Unit and Regression Tests
uses: ./.github/actions/test-benchmarks
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
CXX: ${{matrix.cxx}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/install-dependencies
- name: Build LLVM, Compiler-RT, Newlib, and Package
uses: ./.github/actions/build-test-all
Expand All @@ -174,7 +174,7 @@ jobs:
enable-tests: false
artifact-name: package-${{matrix.platform}}
- name: Publish
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: ${{env.BUILD_PATH}}/patmos-unknown-unknown-elf/package-temp/patmos-llvm-*.tar.gz

Loading