Skip to content

Commit

Permalink
Migrate docs buildsystem from pnpm to bun
Browse files Browse the repository at this point in the history
  • Loading branch information
SchahinRohani committed Aug 22, 2024
1 parent ae0c82c commit feaf737
Show file tree
Hide file tree
Showing 38 changed files with 1,429 additions and 7,869 deletions.
2 changes: 2 additions & 0 deletions .github/styles/config/vocabularies/TraceMachina/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,5 @@ quantiles
Config
Grafana
GitHub
Deno
shipstorm
94 changes: 47 additions & 47 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
---
name: "CodeQL"

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
# Non-peak hour 1:21 AM on Saturdays.
- cron: '21 1 * * 6'

permissions: read-all

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
analyze:
name: Analyze
runs-on: ubuntu-22.04
timeout-minutes: 360
permissions:
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript-typescript', 'python' ]

steps:
- name: Checkout
uses: >- # v4.1.1
actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Initialize CodeQL
uses: >- # v3.22.11
github/codeql-action/init@b374143c1149a9115d881581d29b8390bbcbb59c
with:
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: >- # v3.22.11
github/codeql-action/analyze@b374143c1149a9115d881581d29b8390bbcbb59c
with:
category: "/language:${{matrix.language}}"
# ---
# name: "CodeQL"

# on:
# push:
# branches: [ "main" ]
# pull_request:
# branches: [ "main" ]
# schedule:
# # Non-peak hour 1:21 AM on Saturdays.
# - cron: '21 1 * * 6'

# permissions: read-all

# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

# jobs:
# analyze:
# name: Analyze
# runs-on: ubuntu-22.04
# timeout-minutes: 360
# permissions:
# security-events: write

# strategy:
# fail-fast: false
# matrix:
# language: [ 'javascript-typescript', 'python' ]

# steps:
# - name: Checkout
# uses: >- # v4.1.1
# actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11

# - name: Initialize CodeQL
# uses: >- # v3.22.11
# github/codeql-action/init@b374143c1149a9115d881581d29b8390bbcbb59c
# with:
# languages: ${{ matrix.language }}

# - name: Perform CodeQL Analysis
# uses: >- # v3.22.11
# github/codeql-action/analyze@b374143c1149a9115d881581d29b8390bbcbb59c
# with:
# category: "/language:${{matrix.language}}"
124 changes: 62 additions & 62 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
---
name: Create OCI image
on:
pull_request:
branches:
- main
push:
branches:
- main

permissions: read-all

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
publish-image:
strategy:
fail-fast: false
matrix:
image: [image, nativelink-worker-init, nativelink-worker-lre-cc]
name: Publish ${{ matrix.image }}
runs-on: ubuntu-22.04
permissions:
packages: write
id-token: write
security-events: write
timeout-minutes: 30
steps:

- name: Checkout
uses: >- # v4.1.1
actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install Nix
uses: >- # v10
DeterminateSystems/nix-installer-action@de22e16c4711fca50c816cc9081563429d1cf563
- name: Cache Nix derivations
uses: >- # v4
DeterminateSystems/magic-nix-cache-action@fc6aaceb40b9845a02b91e059ec147e78d1b4e41
- name: Test image
run: |
nix run .#local-image-test ${{ matrix.image }}
- name: Upload image
run: |
nix run .#publish-ghcr ${{ matrix.image }}
env:
GHCR_REGISTRY: ghcr.io/${{ github.repository_owner }}
GHCR_USERNAME: ${{ github.actor }}
GHCR_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
if: github.ref == 'refs/heads/main'

- name: Upload trivy scan results to GitHub Security tab
uses: >- # v2.16.3
github/codeql-action/upload-sarif@592977e6ae857384aa79bb31e7a1d62d63449ec5
with:
sarif_file: 'trivy-results.sarif'
if: github.ref == 'refs/heads/main'
# ---
# name: Create OCI image
# on:
# pull_request:
# branches:
# - main
# push:
# branches:
# - main

# permissions: read-all

# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

# jobs:
# publish-image:
# strategy:
# fail-fast: false
# matrix:
# image: [image, nativelink-worker-init, nativelink-worker-lre-cc]
# name: Publish ${{ matrix.image }}
# runs-on: ubuntu-22.04
# permissions:
# packages: write
# id-token: write
# security-events: write
# timeout-minutes: 30
# steps:

# - name: Checkout
# uses: >- # v4.1.1
# actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11

# - name: Install Nix
# uses: >- # v10
# DeterminateSystems/nix-installer-action@de22e16c4711fca50c816cc9081563429d1cf563

# - name: Cache Nix derivations
# uses: >- # v4
# DeterminateSystems/magic-nix-cache-action@fc6aaceb40b9845a02b91e059ec147e78d1b4e41

# - name: Test image
# run: |
# nix run .#local-image-test ${{ matrix.image }}

# - name: Upload image
# run: |
# nix run .#publish-ghcr ${{ matrix.image }}
# env:
# GHCR_REGISTRY: ghcr.io/${{ github.repository_owner }}
# GHCR_USERNAME: ${{ github.actor }}
# GHCR_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
# if: github.ref == 'refs/heads/main'

# - name: Upload trivy scan results to GitHub Security tab
# uses: >- # v2.16.3
# github/codeql-action/upload-sarif@592977e6ae857384aa79bb31e7a1d62d63449ec5
# with:
# sarif_file: 'trivy-results.sarif'
# if: github.ref == 'refs/heads/main'
Loading

0 comments on commit feaf737

Please sign in to comment.