Skip to content

Commit

Permalink
Remove unnecessary chechouts
Browse files Browse the repository at this point in the history
  • Loading branch information
VeithMetro authored May 14, 2024
1 parent a5851bb commit a9cc111
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/Linux build template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
matrix:
build_type: [Debug, Release, MinSizeRel]

# ----- Packages & artifacts -----
name: Build type - ${{matrix.build_type}}
steps:
- name: Install necessary packages
Expand All @@ -27,12 +28,6 @@ jobs:
pip install jsonref
sudo apt install build-essential cmake ninja-build libusb-1.0-0-dev zlib1g-dev libssl-dev
- name: Checkout Thunder
uses: actions/checkout@v3
with:
path: Thunder
repository: rdkcentral/Thunder

- name: Download artifacts
uses: actions/download-artifact@v3
with:
Expand All @@ -44,6 +39,7 @@ jobs:
tar -xvzf ${{matrix.build_type}}/${{matrix.build_type}}.tar.gz
rm ${{matrix.build_type}}/${{matrix.build_type}}.tar.gz
# ----- Regex & checkout -----
- name: Checkout ThunderLibraries
uses: actions/checkout@v3
with:
Expand All @@ -59,6 +55,7 @@ jobs:
regex_flags: 'gim'
search_string: ${{github.event.pull_request.body}}

# ----- Building & uploading -----
- name: Build ThunderLibraries
run: |
cmake -G Ninja -S ThunderLibraries -B ${{matrix.build_type}}/build/ThunderLibraries \
Expand Down

0 comments on commit a9cc111

Please sign in to comment.