2021-10-18 10:53:29 -04:00
|
|
|
name: YJIT x86 assembler tests
|
2021-04-22 18:24:45 -04:00
|
|
|
|
2021-10-28 11:02:07 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
2021-04-22 18:24:45 -04:00
|
|
|
|
2021-11-18 08:21:05 -05:00
|
|
|
concurrency:
|
2021-11-21 05:17:27 -05:00
|
|
|
group: ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }}
|
|
|
|
cancel-in-progress: ${{ startsWith(github.event_name, 'pull') }}
|
2021-11-18 08:21:05 -05:00
|
|
|
|
2021-04-22 18:24:45 -04:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
set -x
|
|
|
|
sudo apt-get update -q || :
|
|
|
|
sudo apt-get install --no-install-recommends -q -y build-essential
|
|
|
|
- name: git config
|
|
|
|
run: |
|
|
|
|
git config --global advice.detachedHead 0
|
|
|
|
git config --global init.defaultBranch garbage
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: src
|
|
|
|
- name: Run ASM tests
|
2021-10-18 10:53:29 -04:00
|
|
|
run: ./misc/test_yjit_asm.sh
|
2021-04-22 18:24:45 -04:00
|
|
|
working-directory: src
|