Skip to content

nakano: Use single-precision pis in cpad #99

nakano: Use single-precision pis in cpad

nakano: Use single-precision pis in cpad #99

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
SCESDK: /sce
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Download SDK
run: wget -q -O sdk.tar.xz $SDK_URL
env:
SDK_URL: ${{secrets.SDK_URL}}
- name: Untar SDK
run: sudo mkdir /sce; sudo tar -xf sdk.tar.xz -C /sce; sudo ln -s /sce /usr/local/sce
- name: Configure CMake
run: cmake -DCMAKE_TOOLCHAIN_FILE=ps2_ee.cmake -Bbuild
- name: Build
run: cmake --build build