/docker-tk4-jcc

Docker for tk4-jcc

Primary LanguageDockerfile

tk4- with jcc docker

What is this?

This is a Dockerfile and script for use with github actions to automatically build/test MVS 3.8J (tk4-) C programs. Could also be used to test all kinds of programs.

Actions:

Build

To build this image: docker build --tag "tk4-jcc" .

Included scripts

The script: tk4_loaded.sh waits until tk4- is done loading. Used in automation.

#!/usr/bin/env bash

# tk4_loaded.sh

while [ ! -f /tk4-/done_tk4_jcc.txt ]
do
  sleep 1
done

echo "Done!"