mirror of
https://github.com/ruby/ruby.git
synced 2026-08-03 13:08:59 +08:00
* Create GitHub workflow to run ASM tests * Specify path * Attempt #3 * Set bash flags to print commands, stop on first error * Remove clear command from test_asm.sh * Use clang
9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
set -e
|
|
set -x
|
|
|
|
clang -std=gnu99 -Wall -Werror -Wshorten-64-to-32 yjit_asm.c yjit_asm_tests.c -o asm_test
|
|
|
|
./asm_test
|
|
|
|
rm asm_test
|