summaryrefslogtreecommitdiff
path: root/.github/workflows/yjit_asm_tests.yml
blob: 1c4394e96083a094ffc9310c8e5ad7dcd8c29001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: YJIT x86 assembler tests

on: [push, pull_request]

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
        run: ./misc/test_yjit_asm.sh
        working-directory: src