Skip to content

address a couple of undefined behavior that caused issues with -O2, a… #11

address a couple of undefined behavior that caused issues with -O2, a…

address a couple of undefined behavior that caused issues with -O2, a… #11

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- "**/*.md"
- '**/*.txt'
pull_request:
paths-ignore:
- "**/*.md"
- '**/*.txt'
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
payload-build:
runs-on: ubuntu-latest
steps:
- name: Checkout SDK
uses: actions/checkout@v3
with:
repository: ps5-payload-dev/sdk
path: sdk
- name: Setup SDK
working-directory: sdk
run: |
sudo apt update
sudo apt install xxd clang-15 lld-15
make DESTDIR=${{ runner.tool_cache }}/ps5-payload-sdk clean install
echo PS5_PAYLOAD_SDK=${{ runner.tool_cache }}/ps5-payload-sdk >> $GITHUB_ENV
- name: Checkout Payload
uses: actions/checkout@v3
- name: Build Payload
run: |
bash libmicrohttpd.sh
make clean all
- name: Upload Payload
uses: actions/upload-artifact@v3
with:
name: Payload
path: ./websrv.elf
if-no-files-found: error