-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (36 loc) · 943 Bytes
/
run_macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Run MacOS
on:
workflow_dispatch:
jobs:
run:
runs-on: macos-12
steps:
- name: Install Dependencies
run: |
brew install libxaw libatomic_ops
- uses: dawidd6/action-download-artifact@v3
with:
workflow: macos.yml
run_number: 8
name: Test Macos X86_64
path: /usr/local
- uses: dawidd6/action-download-artifact@v3
with:
repo: gatk555/iverilog
workflow: macos.yml
run_number: 8
name: Icarus Verilog with libvvp, Mac OS
path: /usr/local
- uses: actions/checkout@v4
- name: Run
run: |
chmod a+x /usr/local/bin/ngspice
echo Testing ...
ngspice -b -r adc.raw adc_batch.cir
mkdir ~/results
cp *.raw ~/results
- name: Save
uses: actions/upload-artifact@v4
with:
name: Results
path: ~/results