Skip to content

Commit

Permalink
Bump 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
umireon committed Mar 27, 2024
1 parent 1adf5c1 commit 3b94c39
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 13 deletions.
36 changes: 27 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
branches:
- "main"

env:
OPENCV_VERSION: "4.9.0"

jobs:
BuildMac:
runs-on: "macos-13"
Expand All @@ -34,12 +37,15 @@ jobs:
printf "version=%s" "$version" > "$GITHUB_OUTPUT"
id: "get-version"

- uses: "actions/checkout@v4"
with:
submodules: "recursive"
- name: "Checkout"
uses: "actions/checkout@v4"

- name: "Run build-macos.sh"
run: "./build-macos.sh ${{ matrix.config }} ${{ steps.get-version.outputs.version }}"
- name: "Checkout OpenCV"
uses: "actions/checkout@v4"
with:
repository: "opencv/opencv"
ref: "${{ env.OPENCV_VERSION }}"
path: "opencv"

- uses: "actions/upload-artifact@v3"
with:
Expand Down Expand Up @@ -69,9 +75,15 @@ jobs:
printf "version=%s" "$version" > "$GITHUB_OUTPUT"
id: "get-version"

- uses: "actions/checkout@v4"
- name: "Checkout"
uses: "actions/checkout@v4"

- name: "Checkout OpenCV"
uses: "actions/checkout@v4"
with:
submodules: "recursive"
repository: "opencv/opencv"
ref: "${{ env.OPENCV_VERSION }}"
path: "opencv"

- name: "Run build-linux.sh"
run: "./build-linux.sh ${{ matrix.config }} ${{ steps.get-version.outputs.version }}"
Expand Down Expand Up @@ -101,9 +113,15 @@ jobs:
printf "version=%s" "$version" > "$GITHUB_OUTPUT"
id: "get-version"

- uses: "actions/checkout@v4"
- name: "Checkout"
uses: "actions/checkout@v4"

- name: "Checkout OpenCV"
uses: "actions/checkout@v4"
with:
submodules: "recursive"
repository: "opencv/opencv"
ref: "${{ env.OPENCV_VERSION }}"
path: "opencv"

- name: "Run Build-Windows.ps1"
run: "./Build-Windows.ps1 -Configuration ${{ matrix.config }} -Version ${{ steps.get-version.outputs.version }}"
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

1 change: 0 additions & 1 deletion opencv
Submodule opencv deleted from dad8af

0 comments on commit 3b94c39

Please sign in to comment.