Skip to content

Commit

Permalink
There is no TTY
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaleblian committed Jul 2, 2024
1 parent 9ad6e18 commit 07185ec
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,18 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build OpenImageIO using a Rocky image
run: docker build . --file Dockerfile --tag build-oiio:2.3.7
run: docker build . --file Dockerfile --tag build-oiio

- name: Validate installation
- name: Inspect 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
docker run --rm build-oiio find /opt/sgsco
docker run --rm build-oiio /opt/sgsco/bin/oiiotool
- name: Extract OpenImageIO from the image
run: |
docker run -d --name build-oiio build-oiio:2.3.7 sleep 60
docker run -d --name build-oiio build-oiio sleep 4
docker cp build-oiio:/root/oiio.tar.gz .
tar tf ./oiio.tar.gz
# - name: Release the zip
# uses: TheDoctor0/zip-release@0.7.6
Expand All @@ -37,5 +38,5 @@ jobs:
# - name: Release the OpenImageIO zip
# uses: ncipollo/release-action@v1.14.0
# with:
# artifacts: "oiio.tar.gz"
# artifacts: "./oiio.tar.gz"
# tag: 2.3.7

0 comments on commit 07185ec

Please sign in to comment.