Skip to content

Commit

Permalink
Create integration-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjankoehler authored Dec 11, 2024
1 parent 61fc684 commit 177ef06
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
##
## --------------------------------------------------------------------------------
## SPDX-FileCopyrightText: 2024 Martin Jan Köhler and Harald Pretl
## Johannes Kepler University, Institute for Integrated Circuits.
##
## This file is part of KPEX
## (see https://github.com/martinjankoehler/klayout-pex).
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
## SPDX-License-Identifier: GPL-3.0-or-later
## --------------------------------------------------------------------------------
##

name: Integration tests on IIC-OSIC-TOOLS

on:
workflow_call:

jobs:
tests-inside-docker:
name: "Run tests"
runs-on: ubuntu-latest
continue-on-error: true

steps:
- uses: actions/checkout@v4

- name: "Install Docker"
uses: tj-actions/docker-run@v2
with:
image: hpretl/iic-osic-tools:latest
name: iic-osic-tools
options: >
--user=0:0
--env=LC_ALL=en_US.UTF-8
--env=LANG=en_US.UTF-8
--env=NO_VNC_PORT=80
--env=JUPYTER_PORT=8888
args: |
echo "Hello World"
which klayout
klayout --version

0 comments on commit 177ef06

Please sign in to comment.