Skip to content

Commit

Permalink
Merge branch 'main' into fix/render-selection-set-directly
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath authored Dec 13, 2024
2 parents 9953d08 + 0b05b83 commit b10fa32
Show file tree
Hide file tree
Showing 1,129 changed files with 5,711 additions and 5,018 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
macro_benchmarks_comment:
name: Benchmark comment on commit
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
if: >
github.event.workflow_run.conclusion == 'success'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark_pr_track.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
micro_benchmarks_pr_track:
if: github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
env:
BENCHMARK_RESULTS: benchmark_results.txt
PR_EVENT: event.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build_website:
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: Build website
env:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# IMPORTANT: in case of changing the structure of this file make sure to test
# the changes against `npm/gen-root.ts` file
setup-matrix:
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
outputs:
matrix: ${{ steps.setup-matrix.outputs.matrix }}
steps:
Expand All @@ -33,34 +33,34 @@ jobs:
]
include:
- build: linux-x64-gnu
os: ubuntu-latest
os: blacksmith-4vcpu-ubuntu-2204
rust: stable
target: x86_64-unknown-linux-gnu
libc: glibc
- build: linux-x64-musl
os: ubuntu-latest
os: blacksmith-4vcpu-ubuntu-2204
rust: stable
target: x86_64-unknown-linux-musl
libc: musl
cross: true
- build: linux-arm64-gnu
os: ubuntu-latest
os: blacksmith-4vcpu-ubuntu-2204
rust: stable
target: aarch64-unknown-linux-gnu
libc: glibc
cross: true
- build: linux-arm64-musl
os: ubuntu-latest
os: blacksmith-4vcpu-ubuntu-2204
rust: stable
target: aarch64-unknown-linux-musl
libc: musl
cross: true
- build: linux-ia32-gnu
os: ubuntu-latest
os: blacksmith-4vcpu-ubuntu-2204
rust: stable
target: i686-unknown-linux-gnu
libc: glibc
Expand Down
68 changes: 42 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

check_if_build:
name: Check if Build
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204

steps:
- uses: actions/checkout@v4
Expand All @@ -40,7 +40,7 @@ jobs:
test_aws_build:
name: Test AWS Lambda Build
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
defaults:
run:
working-directory: ./tailcall-aws-lambda
Expand All @@ -52,7 +52,7 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install Python
uses: actions/setup-python@v5
uses: useblacksmith/setup-python@v6
with:
python-version: "3.12"

Expand All @@ -64,7 +64,7 @@ jobs:

test_wasm:
name: Run Tests (WASM)
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
defaults:
run:
working-directory: ./tailcall-wasm
Expand All @@ -76,7 +76,7 @@ jobs:
target: wasm32-unknown-unknown

- name: Install Node.js
uses: actions/setup-node@v4
uses: useblacksmith/setup-node@v5
with:
node-version: "20.11.0"

Expand All @@ -90,7 +90,7 @@ jobs:
test_cf:
name: Run Tests (Cloudflare)
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
defaults:
run:
working-directory: ./tailcall-cloudflare
Expand All @@ -104,7 +104,7 @@ jobs:
target: wasm32-unknown-unknown

- name: Install Node.js
uses: actions/setup-node@v4
uses: useblacksmith/setup-node@v5
with:
node-version: "20.11.0"

Expand All @@ -116,17 +116,20 @@ jobs:

test:
name: Run Tests on ${{ matrix.build }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
runs-on: ${{ matrix.os || 'blacksmith-4vcpu-ubuntu-2204' }}
needs: setup_build_matrix
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.setup_build_matrix.outputs.matrix) }}

env:
WITH_COVERAGE: ${{ matrix.build == 'darwin-arm64' }}

steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
uses: useblacksmith/setup-node@v5
with:
node-version: "20.11.0"
- name: Install Prettier
Expand All @@ -142,7 +145,7 @@ jobs:

- name: Cache NASM
if: runner.os == 'Windows'
uses: actions/cache@v4
uses: useblacksmith/cache@v5
with:
path: |
nasm-2.16.02
Expand All @@ -164,15 +167,28 @@ jobs:
}
echo "$(Resolve-Path nasm-2.16.02)" >> $env:GITHUB_PATH
- uses: taiki-e/install-action@cargo-llvm-cov
- name: Install insta test runner
if: ${{ env.WITH_COVERAGE == 'false' && matrix.test != 'false' }}
uses: taiki-e/install-action@v2
with:
tool: cargo-insta

- name: Run cargo insta test
if: ${{ env.WITH_COVERAGE == 'false' && matrix.test != 'false' }}
run: cargo insta test --unreferenced reject --workspace --target ${{ matrix.target }}

- name: Install llvm-cov test runner
if: ${{ env.WITH_COVERAGE == 'true' && matrix.test != 'false' }}
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov

- name: Run Cargo Test
if: matrix.test != 'false'
# TODO: run llvm-cov only for single build since other builds are not sent to codecov anyway
- name: Run cargo llvm-cov test
if: ${{ env.WITH_COVERAGE == 'true' && matrix.test != 'false' }}
run: cargo llvm-cov --workspace ${{ matrix.features }} --lcov --target ${{ matrix.target }} --output-path lcov.info

- name: Upload Coverage to Codecov
if: matrix.build == 'darwin-arm64'
if: ${{ env.WITH_COVERAGE == 'true' && matrix.test != 'false' }}
uses: Wandalen/wretry.action@v3
with:
action: codecov/codecov-action@v4
Expand All @@ -185,7 +201,7 @@ jobs:
check-examples:
name: Check Examples
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v4
- name: Set up Rust
Expand All @@ -207,7 +223,7 @@ jobs:
draft_release:
name: Draft Release
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
permissions:
contents: write
pull-requests: write
Expand Down Expand Up @@ -237,7 +253,7 @@ jobs:
needs: [setup_build_matrix, test, draft_release, check_if_build, test_cf, test_wasm]
# TODO: put a condition to separate job that other will depend on to remove duplication?
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && (needs.check_if_build.outputs.check_if_build == 'true')
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
runs-on: ${{ matrix.os || 'blacksmith-4vcpu-ubuntu-2204' }}
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.setup_build_matrix.outputs.matrix) }}
Expand Down Expand Up @@ -272,7 +288,7 @@ jobs:

- name: Install Node.js
if: (startsWith(github.event.head_commit.message, 'feat') || startsWith(github.event.head_commit.message, 'fix')) && (github.event_name == 'push' && github.ref == 'refs/heads/main')
uses: actions/setup-node@v4
uses: useblacksmith/setup-node@v5
with:
node-version: 20.11.0
registry-url: https://registry.npmjs.org
Expand Down Expand Up @@ -316,7 +332,7 @@ jobs:
name: Release (AWS Lambda)
needs: [test, draft_release, check_if_build, test_cf]
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && (needs.check_if_build.outputs.check_if_build == 'true')
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
permissions:
contents: write
pull-requests: write
Expand All @@ -332,7 +348,7 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install Python
uses: actions/setup-python@v5
uses: useblacksmith/setup-python@v6
with:
python-version: "3.12"

Expand Down Expand Up @@ -360,7 +376,7 @@ jobs:
name: Semantic Release
if: (startsWith(github.event.head_commit.message, 'feat') || startsWith(github.event.head_commit.message, 'fix')) && (github.event_name == 'push' && github.ref == 'refs/heads/main')
needs: [draft_release, release, release_lambda]
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
permissions:
contents: write
pull-requests: write
Expand All @@ -380,12 +396,12 @@ jobs:
name: Publish NPM main package
needs: [draft_release, release]
if: (startsWith(github.event.head_commit.message, 'feat') || startsWith(github.event.head_commit.message, 'fix')) && (github.event_name == 'push' && github.ref == 'refs/heads/main')
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: Checkout Current Branch (Fast)
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
uses: useblacksmith/setup-node@v5
with:
node-version: 20.11.0
registry-url: https://registry.npmjs.org
Expand Down Expand Up @@ -425,7 +441,7 @@ jobs:
APP_VERSION: ${{ needs.draft_release.outputs.create_release_name }} # Ensure APP_VERSION is set correctly
needs: [draft_release, release]
if: (startsWith(github.event.head_commit.message, 'feat') || startsWith(github.event.head_commit.message, 'fix')) && (github.event_name == 'push' && github.ref == 'refs/heads/main')
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
permissions:
contents: read
Expand Down Expand Up @@ -468,7 +484,7 @@ jobs:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
label-sync:
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:
jobs:
lint:
name: Run Formatter and Lint Check
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
permissions:
pull-requests: write
contents: write
Expand All @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
uses: useblacksmith/setup-node@v5
with:
node-version: "20.11.0"
- name: Install Prettier
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-convention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
title-check:
name: Check PR Title
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: All PRs
uses: amannn/action-semantic-pull-request@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- uses: release-drafter/release-drafter@v6
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
deploy:
name: Deploy App
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
concurrency:
group: deploy-job
cancel-in-progress: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
check_spelling:
name: Check spelling
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
stale:
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- uses: actions/stale@v9
with:
Expand Down
Loading

0 comments on commit b10fa32

Please sign in to comment.