Skip to content

Add test stage into Dockerfile #5

Add test stage into Dockerfile

Add test stage into Dockerfile #5

Workflow file for this run

name: Docker Image CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build --build-arg "TARGET=jetbrains/qodana-clang:2024.2-eap-clang18" . --file Dockerfile --tag tinykvpp-clang:$(date +%s)
build-gcc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build --build-arg "TARGET=gcc" . --file Dockerfile --tag tinykvpp-gcc:$(date +%s)