2021-10-18 10:53:29 -04:00
|
|
|
name: YJIT x86 assembler tests
|
2021-04-22 18:24:45 -04:00
|
|
|
|
2021-10-29 00:02:07 +09:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
|
|
|
- '**.md'
|
|
|
|
- '**.rdoc'
|
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
|