Skip to content

Commit

Permalink
Move vendor_tools into the third_party directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
domchen committed Oct 28, 2023
1 parent b4d51e7 commit 6a56c6b
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 21 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
with:
path: |
third_party
vendor_tools
test/baseline/.cache
key: third-party-autotest-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}
restore-keys: third-party-autotest-
Expand Down Expand Up @@ -103,7 +102,6 @@ jobs:
with:
path: |
third_party
vendor_tools
test/baseline/.cache
key: third-party-autotest-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}

Expand Down
12 changes: 0 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-ios-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}
restore-keys: third-party-ios-

Expand Down Expand Up @@ -76,7 +75,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-ios-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}

- name: Job Failed
Expand Down Expand Up @@ -105,7 +103,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-android-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}
restore-keys: third-party-android-

Expand Down Expand Up @@ -135,7 +132,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-android-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}

- name: Job Failed
Expand Down Expand Up @@ -204,7 +200,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-web-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}
restore-keys: third-party-web-

Expand Down Expand Up @@ -263,7 +258,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-web-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}

- name: Job Failed
Expand Down Expand Up @@ -292,7 +286,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-windows-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}
restore-keys: third-party-windows-

Expand All @@ -312,7 +305,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-windows-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}

- name: Job Failed
Expand Down Expand Up @@ -341,7 +333,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-linux-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}
restore-keys: third-party-linux-

Expand All @@ -363,7 +354,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-linux-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}

- name: Job Failed
Expand Down Expand Up @@ -392,7 +382,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-qt-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}
restore-keys: third-party-qt-

Expand Down Expand Up @@ -424,7 +413,6 @@ jobs:
with:
path: |
third_party
vendor_tools
key: third-party-qt-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}-${{ hashFiles('test/baseline/version.json') }}

- name: Job Failed
Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,4 @@ win/Win32Demo/Release/
QTCMAKE.cfg
test/baseline/.cache
/result


vendor_tools/
.vscode
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
project(TGFX)

#set(CMAKE_VERBOSE_MAKEFILE ON)
include(./vendor_tools/vendor.cmake)
include(./third_party/vendor_tools/vendor.cmake)

# Options for building tgfx
option(TGFX_USE_OPENGL "Allow use of OpenGL as GPU backend" ON)
Expand Down
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{
"url": "${PAG_GROUP}/vendor_tools.git",
"commit": "1250341da861a215aa4ba1d4abb6e8e287d4aa87",
"dir": "vendor_tools"
"dir": "third_party/vendor_tools"
},
{
"url": "${PAG_GROUP}/pathkit.git",
Expand Down
2 changes: 1 addition & 1 deletion build_tgfx
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env node
require("./vendor_tools/lib-build");
require("./third_party/vendor_tools/lib-build");
2 changes: 1 addition & 1 deletion build_vendor
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env node
// run 'node build_vendor -h" to print help message
require("./vendor_tools/vendor-build");
require("./third_party/vendor_tools/vendor-build");

0 comments on commit 6a56c6b

Please sign in to comment.