Version 1.0.0 #2
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: Docker Image CI | |
on: | |
release: | |
types: [published] | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Docker Hub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: DLV folder creation | |
run: mkdir -p executables/dlv | |
- name: DLV2 folder creation | |
run: mkdir executables/dlv2 | |
- name: Clingo folder creation | |
run: mkdir executables/clingo | |
- name: Download DLV executables | |
run: | | |
wget -O dlv https://www.dlvsystem.it/files/dlv.x86-64-linux-elf-static.bin | |
mv dlv executables/dlv | |
- name: Download DLV2 executables | |
run: | | |
wget -O dlv2 https://www.mat.unical.it/DLV2/releases/2.1.2/dlv-2.1.2-linux-x86_64 | |
mv dlv2 executables/dlv2 | |
- name: Download Clingo executables | |
run: | | |
wget -O clingo.tar.gz https://master.dl.sourceforge.net/project/potassco/clingo/4.5.4/clingo-4.5.4-linux-x86_64.tar.gz?viasf=1 | |
- name: Extract Clingo | |
run: | | |
tar -xzf clingo.tar.gz | |
mv clingo-4.5.4-linux-x86_64/clingo executables/clingo | |
rm -rf clingo-4.5.4-linux-x86_64 | |
rm clingo.tar.gz | |
- name: Download timeout script | |
run: | | |
wget -O timeout https://github.com/DeMaCS-UNICAL/PythonESE/releases/download/v0.1.0/timeout | |
mv timeout executables/timeout | |
- name: Make DLV executable | |
run: chmod +x executables/dlv/dlv | |
- name: Make DLV2 executable | |
run: chmod +x executables/dlv2/dlv2 | |
- name: Make Clingo executable | |
run: chmod +x executables/clingo/clingo | |
- name: Make timeout executable | |
run: chmod +x executables/timeout | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: loideunical/loide:ese | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
tags: loideunical/loide:ese | |
build-args: | |