sc/.github/workflows/.ppc64le.yml

38 lines
963 B
YAML
Raw Normal View History

2021-02-08 23:53:06 +03:00
name: ppc64le
on:
2023-05-07 00:51:18 +03:00
schedule:
- cron: '0 0 * * 0'
push:
branches:
- master
pull_request:
branches:
- master
jobs:
archs:
# The host should always be linux
runs-on: ubuntu-22.04
name: Build on ppc64le
steps:
- uses: actions/checkout@v2.1.0
2022-02-05 00:11:52 +03:00
- uses: uraimo/run-on-arch-action@v2.1.1
name: Build artifact
id: build
with:
arch: ppc64le
distro: ubuntu20.04
# Not required, but speeds up builds
githubToken: ${{ github.token }}
# The shell to run commands with in the container
shell: /bin/sh
# Produce a binary artifact and place it in the mounted volume
run: |
apt-get update -q -y
apt-get install -q -y build-essential git gcc valgrind cmake
uname -a;id;uname -m;lscpu | grep Endian
mkdir build && cd build
cmake .. && make -j && make check