Skip to content

Commit

Permalink
Update versions of CI actions used
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Oct 21, 2022
1 parent 4f4cff0 commit 61dfc26
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/emcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: mymindstorm/setup-emsdk@v11
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache sources
id: cache-sources
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .
key: cache-yosys
- name: Build
run: |
make config-emcc
make YOSYS_VER=latest
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: yosysjs
path: yosysjs-latest.zip
4 changes: 2 additions & 2 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
$CXX --version
- name: Checkout Yosys
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get iverilog
shell: bash
Expand All @@ -93,7 +93,7 @@ jobs:
- name: Cache iverilog
id: cache-iverilog
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .local/
key: ${{ matrix.os.id }}-${{ hashFiles('iverilog/.git/refs/heads/master') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cc --version
- name: Checkout Yosys
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get iverilog
shell: bash
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Cache iverilog
id: cache-iverilog
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .local/
key: ${{ matrix.os.id }}-${{ hashFiles('iverilog/.git/refs/heads/master') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Take last commit
id: log
run: echo "::set-output name=message::$(git log --no-merges -1 --oneline)"
run: echo "message=$(git log --no-merges -1 --oneline)" >> $GITHUB_OUTPUT
- name: Take repository
id: repo
run: echo "::set-output name=message::$GITHUB_REPOSITORY"
run: echo "message=$GITHUB_REPOSITORY" >> $GITHUB_OUTPUT
- name: Bump version
if: "!contains(steps.log.outputs.message, 'Bump version') && contains(steps.repo.outputs.message, 'YosysHQ/yosys')"
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/vs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ jobs:
yosys-vcxsrc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache sources
id: cache-sources
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .
key: cache-yosys
- name: Build
run: make vcxsrc YOSYS_VER=latest
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: vcxsrc
path: yosys-win32-vcxsrc-latest.zip
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: windows-2019
needs: yosys-vcxsrc
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: vcxsrc
path: .
Expand Down

0 comments on commit 61dfc26

Please sign in to comment.