Skip to content

Commit

Permalink
Bump Action Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Sep 19, 2024
1 parent c043bc2 commit 498e254
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/actions/docker_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
run: docker save -o /tmp/image-${{ inputs.arch }}.tar ${{ env.OPENLANE_IMAGE_NAME }}-${{ inputs.arch }}

- name: Upload Docker Image
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: docker-image-${{ inputs.arch }}
path: /tmp/image-${{ inputs.arch }}.tar
1 change: 1 addition & 0 deletions .github/scripts/variables_documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
TERM
TERMINAL_OUTPUT
TMP_DIR
TCL8_5_TM_PATH
TRACKS_INFO_FILE_PROCESSED
VCHECK_OUTPUT
VDD_NET
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/openlane_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
pdk: [sky130A, gf180mcuC]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up environment variables
uses: ./.github/actions/set_env_variables
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
tar -cf /tmp/${{ matrix.pdk }}.tar -C $PDK_ROOT/${{ matrix.pdk }} .
- name: Upload PDK Tarball
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pdk-tarball-${{ matrix.pdk }}
path: /tmp/${{ matrix.pdk }}.tar
Expand All @@ -64,7 +64,7 @@ jobs:
design_matrix: ${{ steps.set-matrix.outputs.design_matrix }}
issue_regression_matrix: ${{ steps.set-matrix.outputs.issue_regression_matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Python Dependencies
Expand All @@ -88,7 +88,7 @@ jobs:
name: Docker Build (amd64)
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/docker_build
with:
Expand All @@ -100,7 +100,7 @@ jobs:
name: Docker Build (arm64v8)
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/docker_build
with:
Expand All @@ -116,13 +116,13 @@ jobs:
fail-fast: false
matrix: ${{ fromJSON(needs.prepare_test_matrices.outputs.issue_regression_matrix) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up environment variables
uses: ./.github/actions/set_env_variables

- name: Download Docker Image
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: docker-image-amd64
path: /tmp
Expand All @@ -131,7 +131,7 @@ jobs:
run: docker load --input /tmp/image-amd64.tar

- name: Download PDK Tarball
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pdk-tarball-sky130A
path: /tmp
Expand All @@ -150,7 +150,7 @@ jobs:

- name: Upload Logs
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test_${{ matrix.test }}_logs
path: ./test_logs
Expand All @@ -164,15 +164,15 @@ jobs:
fail-fast: false
matrix: ${{ fromJSON(needs.prepare_test_matrices.outputs.design_matrix) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

- name: Set up environment variables
uses: ./.github/actions/set_env_variables

- name: Download Docker Image (amd64)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: docker-image-amd64
path: /tmp
Expand All @@ -181,7 +181,7 @@ jobs:
run: docker load --input /tmp/image-amd64.tar

- name: Download PDK Tarball
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pdk-tarball-${{ matrix.design.pdk }}
path: /tmp
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
- name: Upload Run Tarball
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ESCAPED_DESIGN_NAME }}-${{ matrix.design.pdk }}
path: ./reproducible.tar.gz
Expand All @@ -236,21 +236,21 @@ jobs:
export PUSHING=$(ruby -e 'if ("${{ github.event_name }}" != "pull_request" && "${{ secrets.DOCKERHUB_USER }}" != ""); print(1) else print(0) end')
echo "PUSHING=$PUSHING" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up environment variables
uses: ./.github/actions/set_env_variables

- name: Download Docker Image (amd64)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: docker-image-amd64
path: /tmp

- name: Download Docker Image (arm64v8)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: docker-image-arm64v8
path: /tmp
Expand Down
2 changes: 1 addition & 1 deletion scripts/openlane-1.0.0.tm
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
set scripts_dir [ file dirname [ file normalize [ info script ] ] ]
foreach file [glob $scripts_dir/tcl_commands/*.tcl] {
foreach file [glob "$scripts_dir/tcl_commands/*.tcl"] {
source $file
}
2 changes: 1 addition & 1 deletion scripts/openlane_utils-1.0.0.tm
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
set scripts_dir [ file dirname [ file normalize [ info script ] ] ]
foreach file [glob $scripts_dir/utils/*.tcl] {
foreach file [glob "$scripts_dir/utils/*.tcl"] {
source $file
}

0 comments on commit 498e254

Please sign in to comment.