Skip to content

Commit

Permalink
Updating Linux Actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
VeithMetro authored Jun 3, 2024
1 parent 08716da commit d5766a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Linux build template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

name: Build type - ${{matrix.build_type}}
steps:
# --------- Packages & artifacts ---------
# --------- Packages install & artifacts download ---------
- name: Install necessary packages
uses: nick-fields/retry@v3
with:
Expand All @@ -29,7 +29,7 @@ jobs:
sudo apt install build-essential cmake ninja-build libusb-1.0-0-dev zlib1g-dev libssl-dev
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ThunderInterfaces-${{matrix.build_type}}-artifact
path: ${{matrix.build_type}}
Expand All @@ -39,7 +39,7 @@ jobs:
tar -xvzf ${{matrix.build_type}}/${{matrix.build_type}}.tar.gz
rm ${{matrix.build_type}}/${{matrix.build_type}}.tar.gz
# ----- Regex & checkout -----
# ----- Checkout & regex build options -----
- name: Checkout ThunderNanoServicesRDK
uses: actions/checkout@v4
with:
Expand All @@ -55,7 +55,7 @@ jobs:
regex_flags: 'gim'
search_string: ${{github.event.pull_request.body}}

# ----- Building & uploading -----
# ----- Build & upload artifacts -----
- name: Build ThunderNanoServicesRDK
run: |
cmake -G Ninja -S ThunderNanoServicesRDK -B ${{matrix.build_type}}/build/ThunderNanoServicesRDK \
Expand All @@ -77,7 +77,7 @@ jobs:
run: tar -czvf ${{matrix.build_type}}.tar.gz ${{matrix.build_type}}

- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ThunderNanoServicesRDK-${{matrix.build_type}}-artifact
path: ${{matrix.build_type}}.tar.gz

0 comments on commit d5766a0

Please sign in to comment.