From f8b98c27894d4c30b52937ccd3d4edf948ddd365 Mon Sep 17 00:00:00 2001 From: Andy Pack Date: Fri, 19 Jul 2024 20:42:03 +0100 Subject: [PATCH] adding gitea actions --- .gitea/workflows/test.yml | 80 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..73925da --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,80 @@ +name: test and deploy + +on: + push: + branches: [ master ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build-web: + runs-on: ubuntu-latest + name: Build WASM + steps: + - uses: actions/checkout@v4 + with: + github-server-url: https://gitea.sheep-ghoul.ts.net + + - name: Install wasm-pack + run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh + + - name: Test WASM in-browser + working-directory: ./draught_web + run: wasm-pack test --firefox --chrome --headless + + - name: Build Rust for WASM + working-directory: ./draught_web + run: wasm-pack build --release + + - name: Install Node + uses: actions/setup-node@v2 + with: + node-version: 20 + + - name: Install Node Modules + run: npm ci + working-directory: ./draught_web/www + + - name: Build Js + run: npm run build --if-present + working-directory: ./draught_web/www + + build: + runs-on: ubuntu-latest + name: Build Native + steps: + - uses: actions/checkout@v4 + with: + github-server-url: https://gitea.sheep-ghoul.ts.net + + - name: Build Binary + run: cargo build + working-directory: ./draught + + package: + runs-on: ubuntu-latest + name: Package Container + needs: [build-web] # for ignoring bad builds + if: github.event_name == 'push' && github.ref == 'refs/heads/master' + steps: + - uses: actions/checkout@v4 + with: + github-server-url: https://gitea.sheep-ghoul.ts.net + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + registry: gitea.sheep-ghoul.ts.net + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build & Push Container + uses: docker/build-push-action@v2 + with: + push: true + tags: gitea.sheep-ghoul.ts.net/sarsoo/draught:latest + context: . \ No newline at end of file