Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
Commits
409f80ea
Commit
409f80ea
authored
Mar 30, 2020
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup workflows
parent
a38d4998
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
9 deletions
+5
-9
.github/workflows/main.yaml
+3
-6
.github/workflows/notice.yaml
+2
-3
No files found.
.github/workflows/
test
.yaml
→
.github/workflows/
main
.yaml
View file @
409f80ea
...
@@ -45,14 +45,14 @@ jobs:
...
@@ -45,14 +45,14 @@ jobs:
-
name
:
Install Dependencies (Linux)
-
name
:
Install Dependencies (Linux)
if
:
runner.os == 'Linux'
if
:
runner.os == 'Linux'
run
:
sudo apt-get install -y shunit2 flex bison autoconf gperf
run
:
sudo apt-get install -y shunit2 flex bison autoconf gperf
-
name
:
Cache iverilog
-
name
:
Cache iverilog
(Linux)
uses
:
actions/cache@v1
uses
:
actions/cache@v1
if
:
runner.os == 'Linux'
if
:
runner.os == 'Linux'
with
:
with
:
path
:
~/.local
path
:
~/.local
key
:
${{ runner.OS }}-iverilog-10-3
key
:
${{ runner.OS }}-iverilog-10-3
restore-keys
:
${{ runner.OS }}-iverilog-10-3
restore-keys
:
${{ runner.OS }}-iverilog-10-3
-
name
:
Install iverilog
-
name
:
Install iverilog
(Linux)
if
:
runner.os == 'Linux'
if
:
runner.os == 'Linux'
run
:
|
run
:
|
if [ ! -e "$HOME/.local/bin/iverilog" ]; then
if [ ! -e "$HOME/.local/bin/iverilog" ]; then
...
@@ -70,10 +70,9 @@ jobs:
...
@@ -70,10 +70,9 @@ jobs:
with
:
with
:
name
:
${{ runner.os }}
name
:
${{ runner.os }}
path
:
bin
path
:
bin
-
name
:
Mark Binary Executable
run
:
chmod +x bin/sv2v
-
name
:
Test
-
name
:
Test
run
:
|
run
:
|
chmod +x bin/sv2v
export PATH="$PATH:$HOME/.local/bin"
export PATH="$PATH:$HOME/.local/bin"
make test
make test
...
@@ -91,10 +90,8 @@ jobs:
...
@@ -91,10 +90,8 @@ jobs:
name
:
${{ matrix.name }}
name
:
${{ matrix.name }}
path
:
sv2v-${{ matrix.name }}
path
:
sv2v-${{ matrix.name }}
-
name
:
Mark Binary Executable
-
name
:
Mark Binary Executable
if
:
matrix.name == 'macOS' || matrix.name == 'Linux'
run
:
chmod +x */sv2v*
run
:
chmod +x */sv2v*
-
name
:
Create ZIP
-
name
:
Create ZIP
shell
:
bash
run
:
zip -r sv2v-${{ matrix.name }} ./sv2v-${{ matrix.name }}
run
:
zip -r sv2v-${{ matrix.name }} ./sv2v-${{ matrix.name }}
-
name
:
Upload Release Asset
-
name
:
Upload Release Asset
uses
:
actions/upload-release-asset@v1.0.1
uses
:
actions/upload-release-asset@v1.0.1
...
...
.github/workflows/notice.yaml
View file @
409f80ea
...
@@ -9,11 +9,10 @@ on:
...
@@ -9,11 +9,10 @@ on:
-
NOTICE
-
NOTICE
jobs
:
jobs
:
notice
:
notice
:
runs-on
:
macOS-latest
runs-on
:
ubuntu-18.04
steps
:
steps
:
-
uses
:
actions/checkout@v1
-
uses
:
actions/checkout@v1
-
name
:
Install Haskell Stack
-
uses
:
mstksg/setup-stack@v2
run
:
brew install haskell-stack
-
name
:
Regenerate NOTICE
-
name
:
Regenerate NOTICE
run
:
./notice.sh > NOTICE
run
:
./notice.sh > NOTICE
-
name
:
Validate NOTICE
-
name
:
Validate NOTICE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment