加了对sp的指针处理,大致可以进行ra的出入栈了 #4
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: phase4 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'phase4/**' | |
jobs: | |
test-splc: | |
name: test splc | |
runs-on: ubuntu-22.04 | |
env: | |
TZ: Asia/Shanghai | |
steps: | |
- name: 1. Git checkout... | |
uses: actions/checkout@v3 | |
- name: 2. Install Pyinstaller | |
run: pip install pyinstaller | |
- name: 3. Compile splc | |
working-directory: phase4 | |
run: make splc |