We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3b06cc commit 5152adbCopy full SHA for 5152adb
1 file changed
.github/workflows/push.yml
@@ -22,8 +22,11 @@ jobs:
22
variant: 'CS'
23
version: '8.14'
24
- name: Install a86 and langs package
25
- run: raco pkg install 'https://github.com/cmsc430/a86.git?path=langs#main'
26
- run: raco pkg install 'https://github.com/cmsc430/langs.git?path=langs#main'
+ run: |
+ git clone https://github.com/cmsc430/a86.git
27
+ git clone https://github.com/cmsc430/langs.git
28
+ raco pkg install --auto a86/
29
+ raco pkg install --auto langs/
30
- name: Build and test
31
run: |
32
export LINK_DIR=/usr/lib/x86_64-linux-gnu
0 commit comments