Skip to content

Commit

Permalink
actions: Examine the installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ray Haleblian committed Jul 2, 2024
1 parent 00e3518 commit bb0ec66
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@ jobs:
- uses: actions/checkout@v4
- name: Build OpenImageIO using a Rocky image
run: docker build . --file Dockerfile --tag build-oiio:2.3.7


- name: Validate installation
run: |
docker run --rm -it build-oiio:2.3.7 find /opt/sgsco
docker run --rm -it build-oiio:2.3.7 /opt/sgsco/bin/oiiotool
- name: Extract OpenImageIO from the image
run: |
docker run -d --name build-oiio build-oiio:2.3.7
docker run -d --name build-oiio build-oiio:2.3.7 sleep 60
docker cp build-oiio:/root/oiio.tar.gz .
# - name: Release the zip
Expand All @@ -29,8 +34,8 @@ jobs:
# filename: 'oiio.tar.gz'
# path: /opt/sgsco

- name: Release the OpenImageIO zip
uses: ncipollo/release-action@v1.14.0
with:
artifacts: "oiio.tar.gz"
tag: 2.3.7
# - name: Release the OpenImageIO zip
# uses: ncipollo/release-action@v1.14.0
# with:
# artifacts: "oiio.tar.gz"
# tag: 2.3.7

0 comments on commit bb0ec66

Please sign in to comment.