Skip to content

Build and Test: Merge pull request #19 from ge0mk/elementwise_scalar_ops add element-wise ops with scalar rhs operand #12

Build and Test: Merge pull request #19 from ge0mk/elementwise_scalar_ops add element-wise ops with scalar rhs operand

Build and Test: Merge pull request #19 from ge0mk/elementwise_scalar_ops add element-wise ops with scalar rhs operand #12

name: Build and test cinnamon
run-name: 'Build and Test: ${{ github.event.head_commit.message }}'
on:
workflow_dispatch:
push:
jobs:
main:
name: Build and test
runs-on: ubuntu-22.04
env:
CC: clang
CXX: clang++
LDFLAGS: -fuse-ld=mold
CMAKE_GENERATOR: Ninja
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install build dependencies
run: sudo apt-get install clang ninja-build mold libvulkan-dev
- name: Restore dependency cache
id: dependency-cache-restore
uses: actions/cache/restore@v3
with:
path: |
llvm
upmem
key: cinnamon-dependencies-${{ runner.os }}
- name: Build
run: .github/workflows/build-ci.sh
- name: Test
working-directory: cinnamon/build
run: ninja check-cinm-mlir
- name: Save dependency cache
uses: actions/cache/save@v3
if: always()
with:
path: |
llvm
upmem
key: ${{ steps.dependency-cache-restore.outputs.cache-primary-key }}