Skip to content

[IN] Global register allocator #6

[IN] Global register allocator

[IN] Global register allocator #6

Workflow file for this run

name: CI
on:
push:
branches: [mob]
pull_request:
branches: [mob]
jobs:
build-and-test:
runs-on: ubuntu-latest
container:
image: ghcr.io/matgla/tinycc-armv8m:latest
options: --user root
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure
run: ./configure --enable-O2 --enable-asan
- name: Build and test
run: |
virtualenv .venv
source .venv/bin/activate
make test -j$(nproc)