cosmetics #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ps5-payload-libs | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
run: | | |
sudo apt update | |
sudo apt install cmake pkg-config meson clang-15 lld-15 | |
sudo apt install build-essential autoconf libtool yasm nasm | |
sudo apt install smpq gperf pkgconf libarchive-tools autopoint po4a git curl doxygen | |
sudo apt install makepkg pacman-package-manager | |
- name: Build Libs | |
run: bash ci-libs.sh | |
- name: Package Libs | |
run: tar -czf ps5-payload-libs.tar.gz -C / opt/ps5-payload-sdk | |
- name: Upload Libs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ps5-payload-libs | |
path: ./ps5-payload-libs.tar.gz | |
if-no-files-found: error |