chore (cleanup): cleanup before release #174
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build_frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
- name: Setup | |
run: npm install | |
- name: Build | |
run: make build_frontend | |
- uses: actions/upload-artifact@master | |
with: | |
name: build-frontend | |
path: server/ctrl/static/www/ | |
build_backend: | |
needs: build_frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@master | |
with: | |
name: build-frontend | |
path: server/ctrl/static/www/ | |
- uses: actions/[email protected] | |
with: | |
go-version: 1.19 | |
- name: Setup | |
run: | | |
mkdir -p ./dist/data/state/config | |
cp config/config.json ./dist/data/state/config/ | |
- name: Build | |
run: | | |
make build_init | |
make build_backend | |
- uses: actions/upload-artifact@master | |
with: | |
name: build | |
path: dist | |
- name: Verify | |
run: timeout 5 ./dist/filestash || code=$?; if [[ $code -ne 124 ]]; then exit $code; fi | |
test_prepare: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Clone test repo | |
env: | |
PAT: ${{ secrets.PAT }} | |
run: | | |
git clone --depth 1 https://mickael-kerjean:[email protected]/mickael-kerjean/filestash-test test | |
chmod -R 777 ./test/ | |
- uses: actions/upload-artifact@master | |
with: | |
name: test | |
path: . | |
test_frontend: | |
needs: test_prepare | |
runs-on: ubuntu-latest | |
steps: | |
- name: Restore | |
uses: actions/download-artifact@v3 | |
with: | |
name: test | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
- name: Setup | |
run: | | |
npm install | |
cd ./test/unit_js | |
npm install | |
- name: Run | |
run: | | |
cd ./test/unit_js | |
npm test | |
test_backend: | |
needs: [test_prepare, build_frontend, build_backend] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Restore | |
uses: actions/download-artifact@v3 | |
with: | |
name: test | |
- uses: actions/download-artifact@v3 | |
with: | |
name: build-frontend | |
path: server/ctrl/static/www/ | |
- uses: actions/[email protected] | |
with: | |
go-version: 1.19 | |
- name: Setup | |
run: | | |
sudo apt-get install -y poppler-utils | |
cp ./test/assets/* /tmp/ | |
mkdir server/ctrl/static/www/ && touch server/ctrl/static/www/index.html | |
make build_init | |
rm -rf server/generator/ | |
go generate ./test/unit_go/... | |
go get github.com/stretchr/testify/assert | |
go mod vendor | |
- name: Run | |
run: go test --tags "fts5" -count=1 $(go list ./server/... | grep -v "server/plugin" | grep -v "server/generator") | |
test_smoke: | |
needs: build_backend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Init | |
uses: actions/download-artifact@v3 | |
with: | |
name: build | |
- name: Run | |
run: | | |
chmod +x filestash | |
timeout 5 ./filestash > access.log || code=$?; if [[ $code -ne 124 ]]; then exit $code; fi | |
echo "========= access.log " | |
cat access.log | |
echo "=====================" | |
cat access.log | grep -q "Filestash v0.5 starting" | |
cat access.log | grep -q "listening on :" | |
cat access.log | grep -vz "WARN" | |
cat access.log | grep -vz "ERR" | |
test_e2e: | |
needs: [test_smoke, test_prepare] | |
runs-on: ubuntu-latest | |
container: | |
image: machines/puppeteer | |
options: --user root | |
env: | |
ADMIN_PASSWORD: $2a$10$9OFbPZV4lYpYjU5eUi91o.kgeMyCuW11j878YBRri3gBwccq2lSFy | |
APP_URL: http://127.0.0.1:8334 | |
CI: true | |
steps: | |
- name: Restore Build | |
uses: actions/download-artifact@v3 | |
with: | |
name: build | |
- name: Restore Project | |
uses: actions/download-artifact@v3 | |
with: | |
name: test | |
- name: Setup | |
run: | | |
cd ./test/e2e | |
npm install | |
- name: Run | |
run: | | |
chmod +x ./filestash | |
./filestash > /dev/null & | |
cd ./test/e2e | |
node servers/webdav.js > /dev/null & | |
npm test | |
release_docker_amd64: | |
if: github.ref == 'refs/heads/master' | |
needs: [ test_e2e, test_backend, test_frontend ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Init | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Run | |
run: | | |
docker build -t machines/filestash:latest-amd64 ./docker/ | |
docker push machines/filestash:latest-amd64 | |
release_docker_arm64: | |
if: github.ref == 'refs/heads/master' | |
needs: [ test_e2e, test_backend, test_frontend ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Init | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Run | |
run: | | |
uname -m | |
uname -a | |
docker version | |
# docker build -t machines/filestash:latest-arm64 ./docker/ | |
# echo "DONE" | |
release_docker: | |
needs: [ release_docker_amd64, release_docker_arm64 ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Init | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Run | |
run: | | |
docker manifest create machines/filestash:latest \ | |
--amend machines/filestash:latest-amd64 \ | |
--amend machines/filestash:latest-arm64v8 | |
docker manifest push machines/filestash:latest | |
deploy: | |
if: github.ref == 'refs/heads/master' | |
needs: release_docker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
uses: Azure/k8s-set-context@v1 | |
with: | |
method: kubeconfig | |
kubeconfig: ${{ secrets.KUBE_CONFIG }} | |
- name: Deploy | |
run: kubectl rollout restart deployment app-filestash-demo -n filestash |