1818 highest_semver_tag : ${{ steps.get_highest_semver.outputs.highest_semver_tag }}
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v2
21+ uses : actions/checkout@v3
2222 with :
2323 persist-credentials : false
2424 - name : Get release version
@@ -55,14 +55,14 @@ jobs:
5555 name : Build wheels
5656 runs-on : ubuntu-latest
5757 steps :
58- - uses : actions/checkout@v2
58+ - uses : actions/checkout@v3
5959 - name : Setup Python
60- uses : actions/setup-python@v2
60+ uses : actions/setup-python@v3
6161 with :
6262 python-version : " 3.8"
6363 architecture : x64
6464 - name : Setup Node
65- uses : actions/setup-node@v2
65+ uses : actions/setup-node@v3
6666 with :
6767 node-version : ' 17.x'
6868 registry-url : ' https://registry.npmjs.org'
@@ -72,24 +72,24 @@ jobs:
7272 run : |
7373 python -m pip install build
7474 python -m build --wheel --outdir wheelhouse/
75- - uses : actions/upload-artifact@v2
75+ - uses : actions/upload-artifact@v3
7676 with :
7777 name : wheels
7878 path : ./wheelhouse/*.whl
7979
8080 build-source-distribution :
8181 name : Build source distribution
82- runs-on : macos-10.15
82+ runs-on : macos-latest
8383 steps :
84- - uses : actions/checkout@v2
84+ - uses : actions/checkout@v3
8585 - name : Setup Python
8686 id : setup-python
87- uses : actions/setup-python@v2
87+ uses : actions/setup-python@v3
8888 with :
8989 python-version : " 3.10"
9090 architecture : x64
9191 - name : Setup Node
92- uses : actions/setup-node@v2
92+ uses : actions/setup-node@v3
9393 with :
9494 node-version : ' 17.x'
9595 registry-url : ' https://registry.npmjs.org'
@@ -105,7 +105,7 @@ jobs:
105105 - name : Build
106106 run : |
107107 python3 setup.py sdist
108- - uses : actions/upload-artifact@v2
108+ - uses : actions/upload-artifact@v3
109109 with :
110110 name : wheels
111111 path : dist/*
@@ -120,7 +120,7 @@ jobs:
120120 env :
121121 REGISTRY : feastdev
122122 steps :
123- - uses : actions/checkout@v2
123+ - uses : actions/checkout@v3
124124 - name : Set up QEMU
125125 uses : docker/setup-qemu-action@v1
126126 - name : Set up Docker Buildx
@@ -136,7 +136,7 @@ jobs:
136136 needs : [build-python-wheel, build-source-distribution, get-version]
137137 strategy :
138138 matrix :
139- os : [ubuntu-latest, macos-10.15 ]
139+ os : [ubuntu-latest, macos-latest ]
140140 python-version : [ "3.8", "3.9", "3.10"]
141141 from-source : [ True, False ]
142142 env :
@@ -156,7 +156,7 @@ jobs:
156156 steps :
157157 - name : Setup Python
158158 id : setup-python
159- uses : actions/setup-python@v2
159+ uses : actions/setup-python@v3
160160 with :
161161 python-version : ${{ matrix.python-version }}
162162 architecture : x64
@@ -165,7 +165,7 @@ jobs:
165165 name : wheels
166166 path : dist
167167 - name : Install OS X dependencies
168- if : matrix.os == 'macos-10.15 '
168+ if : matrix.os == 'macos-latest '
169169 run : brew install coreutils
170170 - name : Install wheel
171171 if : ${{ !matrix.from-source }}
@@ -192,11 +192,12 @@ jobs:
192192 echo "$VERSION_OUTPUT from installed wheel is not in the correct format or doesn't have the right version $VERSION."
193193 exit 1
194194 fi
195- - name : Smoke test
196- run : |
197- feast init test_repo
198- cd test_repo/feature_repo
199- feast apply
200- echo "$TEST_SCRIPT" > run-and-wait.sh
201- bash run-and-wait.sh feast serve
202- bash run-and-wait.sh feast ui
195+ # This is temporarily disabled.
196+ # - name: Smoke test
197+ # run: |
198+ # feast init test_repo
199+ # cd test_repo/feature_repo
200+ # feast apply
201+ # echo "$TEST_SCRIPT" > run-and-wait.sh
202+ # bash run-and-wait.sh feast serve
203+ # bash run-and-wait.sh feast ui
0 commit comments