update for Ubuntu 24.04 #122
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: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag core_analyzer:$(date +%s) | |
- name: Run test ubuntu | |
run: docker build . --file test/DockerfileTest_ubuntu --tag core_analyzer:ubuntu$(date +%s) | |
- name: Run test 9 | |
run: docker build . --file test/DockerfileTest_gdb_9_2 --tag core_analyzer:9_2$(date +%s) | |
- name: Run test redhat | |
run: docker build . --file test/DockerfileTest_redhat --tag core_analyzer:rdht$(date +%s) | |
- name: Run test suse | |
run: docker build . --file test/DockerfileTest_suse --tag core_analyzer:suse$(date +%s) |