Skip to content

Commit

Permalink
Revert changes for to build ci images
Browse files Browse the repository at this point in the history
These are just too big for github to build, skip building them for
now.
  • Loading branch information
bryteise committed Jun 14, 2024
1 parent 5a0a2fb commit c943435
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 45 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,44 +7,6 @@ env:
GITHUB_TOKEN: ${{ github.token }}

jobs:
clr-installer-ci:
if: (github.event_name == 'create' && github.event.ref_type == 'tag')
name: Release
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Delete unused tools folder
run: rm -rf /opt/hostedtoolcache
- name: Code Checkout
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
run: ./build-and-push-images.sh ${{ github.event.ref }} clr-installer-ci
mixer-ci:
if: (github.event_name == 'create' && github.event.ref_type == 'tag')
name: Release
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Delete unused tools folder
run: rm -rf /opt/hostedtoolcache
- name: Code Checkout
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
run: ./build-and-push-images.sh ${{ github.event.ref }} mixer-ci
release:
if: (github.event_name == 'create' && github.event.ref_type == 'tag')
name: Release
Expand Down
8 changes: 1 addition & 7 deletions build-and-push-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,4 @@ main() {
build_and_push_image tesseract-ocr "${ver}"
}

if [ "$2" == "clr-installer-ci" ]; then
build_and_push_image clr-installer-ci "$1"
elif [ "$2" == "mixer-ci" ]; then
build_and_push_image mixer-ci "$1"
else
main $1
fi
main $1

0 comments on commit c943435

Please sign in to comment.