Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/artistic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,18 @@ jobs:
artistic:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
timeout-minutes: 180
timeout-minutes: 60
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout repository (with submodules)
uses: actions/checkout@v4
with:
submodules: true
- name: Get run ID of "Full Flow" workflow
id: get-run-id
run: |
Expand All @@ -42,6 +46,8 @@ jobs:
github-token: ${{ github.token }}
repository: ${{ github.repository }}
run-id: ${{ steps.get-run-id.outputs.run-id }}
path: klayout/croc_chip.gds

- name: Checkout ArtistIC repository
uses: actions/checkout@v4
with:
Expand All @@ -64,6 +70,7 @@ jobs:
name: png-logo
path: doc/artwork/logo.png
continue-on-error: true

- name: Install ImageMagick
run: |
sudo apt-get install -y imagemagick
Expand Down Expand Up @@ -116,6 +123,7 @@ jobs:
name: chip-gds
path: artistic/meerkat_work/croc_chip.gds.gz
continue-on-error: true

- name: Prepare render
run: |
mkdir -p artistic/renderics
Expand Down
9 changes: 4 additions & 5 deletions start_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
# Authors:
# - Philippe Sauter <phsauter@iis.ee.ethz.ch>

IMG=hpretl/iic-osic-tools:2024.10
env UID=$(id -u) GID=$(id -g) docker compose pull pulp-docker

docker pull $IMG

env UID=$(id -u) GID=$(id -g) docker compose run \
-e PS1="\[\033[01;32m\]docker-osic: \[\033[00m\]\[\033[01;34m\]\w\[\033[00m\] $" \
env UID=$(id -u) GID=$(id -g) docker compose run --rm \
-e PS1="\[\033[01;32m\]osic:\[\033[00m\]\[\033[01;34m\]\w\[\033[00m\] $" \
-e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
pulp-docker
Loading