An attempt to fix github action freeze #700
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "**" | |
permissions: | |
contents: read | |
jobs: | |
Linux_x86_64: | |
name: 'Linux x86_64' | |
runs-on: ubuntu-22.04 | |
container: | |
image: ubuntu:22.04 | |
env: | |
CFLAGS: '-fsanitize=address,undefined' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: apt | |
run: | | |
apt update -y | |
DEBIAN_FRONTEND=noninteractive apt install -y \ | |
gcc \ | |
libcapstone-dev \ | |
libcapstone4 \ | |
make | |
- name: make | |
run: make TARGET=x86_64 all | |
- name: test | |
run: make TARGET=x86_64 test-ci |