Create tests #3
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: run Docker Image CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag my-image-name:latest | |
- name: Create a container and extract the binary | |
run: | | |
# Create a container | |
docker create --name extract-container my-image-name:latest | |
# Copy the binary from the container | |
mkdir -p ./output | |
docker cp extract-container:/root/Mergen/build/lifter ./output/lifter | |
# we install llvm into docker | |
docker run --rm -v $PWD:/data mergen | |
# Remove the container | |
docker rm extract-container | |
- name: Upload the extracted binary as an artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Lifter | |
path: ./output/lifter |