Cleanup #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Prebuild docker image | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
build: | |
name: BUILD | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 600 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: "mczyz/dev" | |
- name: Login to GitHub Container Registry (GHCR) | |
if: github.event_name != 'pull_request' && github.repository == 'antmicro/openroad-codespace' | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: gha | |
password: ${{ github.token }} | |
- name: Docker build | |
run: | | |
docker build -t ghcr.io/antmicro/openroad-codespace:orfs -f 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 | |
# - name: Devcontainer build | |
# run: | | |
# npm install -g @devcontainers/cli | |
# devcontainer build --config .devcontainer/ubuntu-gui/devcontainer.json --workspace-folder . --push false --image-name ghcr.io/antmicro/openroad-codespace:desktop | |
# # docker image tag test:latest ghcr.io/antmicro/openroad-codespace:test | |
# - 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:desktop | |
- name: Docker build | |
run: | | |
docker build -t ghcr.io/antmicro/openroad-codespace:lxqt -f 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 |