Skip to content

Commit

Permalink
Adjust paths
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Czyz <[email protected]>
  • Loading branch information
mczyz-antmicro committed Apr 9, 2024
1 parent 3c14c28 commit b34ce28
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/ubuntu-gui-full/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0

{
"image": "ghcr.io/antmicro/openroad-codespace:lxqt",
"image": "ghcr.io/antmicro/OpenROAD-flow-scripts:lxqt",
"forwardPorts": [6080],
"portsAttributes": {
"6080": {
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4

- name: Login to GitHub Container Registry (GHCR)
if: github.event_name != 'pull_request' && github.repository == 'antmicro/openroad-codespace'
if: github.event_name != 'pull_request' && github.repository == 'antmicro/OpenROAD-flow-scripts'
uses: docker/login-action@v3
with:
registry: ghcr.io
Expand All @@ -28,16 +28,16 @@ jobs:

- name: Build ORFS
run: |
docker build -t ghcr.io/antmicro/openroad-codespace:orfs -f Dockerfile-orfs .
docker build -t ghcr.io/antmicro/OpenROAD-flow-scripts:orfs -f tools/codespace/Dockerfile-orfs .
- name: Push container image to GitHub Container Registry (GHCR)
if: github.event_name != 'pull_request' && github.repository == 'antmicro/openroad-codespace'
run: docker push ghcr.io/antmicro/openroad-codespace:orfs
if: github.event_name != 'pull_request' && github.repository == 'antmicro/OpenROAD-flow-scripts'
run: docker push ghcr.io/antmicro/OpenROAD-flow-scripts:orfs

- name: Build LXQt
run: |
docker build -t ghcr.io/antmicro/openroad-codespace:lxqt -f Dockerfile-lxqt .
docker build -t ghcr.io/antmicro/OpenROAD-flow-scripts:lxqt -f tools/codespace/Dockerfile-lxqt .
- name: Push container image to GitHub Container Registry (GHCR)
if: github.event_name != 'pull_request' && github.repository == 'antmicro/openroad-codespace'
run: docker push ghcr.io/antmicro/openroad-codespace:lxqt
if: github.event_name != 'pull_request' && github.repository == 'antmicro/OpenROAD-flow-scripts'
run: docker push ghcr.io/antmicro/OpenROAD-flow-scripts:lxqt

0 comments on commit b34ce28

Please sign in to comment.