sapphire rapids XED enumerated with pin 3.30 #193
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: build CI | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install scons | |
run: sudo apt install scons | |
- name: default opt build | |
run: ./build.py | |
- name: default debug build | |
run: ./build.py -d | |
- name: opt build with dramsim | |
run: ./build.py --dramsim | |
- name: debug build with dramsim | |
run: ./build.py -d --dramsim |