mirror of
https://github.com/libretro/RetroArch.git
synced 2026-02-19 18:58:52 +08:00
These makefiles provide the info target that will print contents of each variable that is not printed (unless V=1, which is not the case here) on command invocation. Making this information available in the logs should help debugging, but it doesn't need to be printed on each command invocation.
38 lines
816 B
YAML
38 lines
816 B
YAML
name: CI Linux (i686)
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
repository_dispatch:
|
|
types: [run_build]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: git.libretro.com:5050/libretro-infrastructure/libretro-build-i386-ubuntu:xenial-gcc9
|
|
options: --user root
|
|
|
|
steps:
|
|
- name: Check Out Repo
|
|
uses: taiki-e/checkout-action@v1
|
|
|
|
- name: Configure Build
|
|
run: |
|
|
./configure --disable-qt --enable-xdelta
|
|
|
|
- name: Compile RA
|
|
run: |
|
|
make -j$(getconf _NPROCESSORS_ONLN) clean
|
|
make -j$(getconf _NPROCESSORS_ONLN) info all
|
|
|
|
- name: Get short SHA
|
|
id: slug
|
|
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
|