File tree 3 files changed +5
-3
lines changed
Filter options
3 files changed +5
-3
lines changed
Original file line number Diff line number Diff line change @@ -49,12 +49,13 @@ jobs:
49
49
- name : Filter projects
50
50
id : set-matrix
51
51
run : |
52
- echo "::set-output name= projects:: $(python ./.github/workflows/filter_projects.py $HOME/files.json)"
52
+ echo "projects= $(python ./.github/workflows/filter_projects.py $HOME/files.json)" >> $GITHUB_OUTPUT
53
53
54
54
ci :
55
55
runs-on : ubuntu-latest
56
56
needs : filter_projects
57
57
timeout-minutes : 60
58
+ if : needs.filter_examples.outputs.projects != '[]'
58
59
strategy :
59
60
# Test for each project in parallel using ci_max and ci_min to ensure
60
61
# tested in range of tfx/tensorflow supported versions
Original file line number Diff line number Diff line change @@ -49,11 +49,12 @@ jobs:
49
49
- name : Filter example projects
50
50
id : set-matrix
51
51
run : |
52
- echo "::set-output name= projects:: $(python ./.github/workflows/filter_examples.py $HOME/files.json)"
52
+ echo "projects= $(python ./.github/workflows/filter_examples.py $HOME/files.json)" >> $GITHUB_OUTPUT
53
53
ci-examples :
54
54
runs-on : ubuntu-latest
55
55
needs : filter_examples
56
56
timeout-minutes : 60
57
+ if : needs.filter_examples.outputs.projects != '[]'
57
58
strategy :
58
59
# Test for each project in parallel using ci_max and ci_min to ensure
59
60
# tested in range of tfx/tensorflow supported versions
Original file line number Diff line number Diff line change 17
17
jobs :
18
18
build-and-publish :
19
19
name : Build TFX Addons PyPI package and release to PyPI and TestPyPI
20
- runs-on : ubuntu-18.04
20
+ runs-on : ubuntu-latest
21
21
steps :
22
22
- uses : actions/checkout@v2
23
23
- name : Set up Python 3.7
You can’t perform that action at this time.
0 commit comments