From 2c0caab76106256d4a7e175e2a83a2ee5fba7e59 Mon Sep 17 00:00:00 2001 From: Elliot DeNolf Date: Thu, 7 Nov 2024 15:30:00 -0500 Subject: [PATCH] ci: remove unused generated-templates, replaced with template build job --- .github/workflows/main.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e7f7184035..56cf221719 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -506,37 +506,6 @@ jobs: - name: Generate GraphQL schema file run: pnpm dev:generate-graphql-schema graphql-schema-gen - generated-templates: - needs: build - if: false # Needs to pull in tgz files from build - runs-on: ubuntu-latest - - steps: - # https://github.com/actions/virtual-environments/issues/1187 - - name: tune linux network - run: sudo ethtool -K eth0 tx off rx off - - - name: Setup Node@${{ env.NODE_VERSION }} - uses: actions/setup-node@v4 - with: - node-version: ${{ env.NODE_VERSION }} - - - name: Install pnpm - uses: pnpm/action-setup@v4 - with: - version: ${{ env.PNPM_VERSION }} - run_install: false - - - name: Restore build - uses: actions/cache@v4 - timeout-minutes: 10 - with: - path: ./* - key: ${{ github.sha }}-${{ github.run_number }} - - - name: Build all generated templates - run: pnpm tsx ./scripts/build-generated-templates.ts - all-green: name: All Green if: always()