chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:14:29 +08:00
commit b7d888a71b
32059 changed files with 305734 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Check
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Check out code
uses: actions/checkout@v3
- name: Run check
run: make check
- name: Unit Test
run: make test
- name: Lint
run: make lint
+63
View File
@@ -0,0 +1,63 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '43 20 * * 6'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
- name: Build assets binary
run: make build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
+61
View File
@@ -0,0 +1,61 @@
name: Upload S3
on:
push:
branches:
- master
workflow_dispatch:
inputs:
use-size-only:
description: 'Include --size-only flag in aws s3 sync command'
required: false
default: 'true'
permissions:
id-token: write
env:
AWS_REGION: us-east-1
jobs:
upload-s3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Confiugre AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
aws-region: ${{ env.AWS_REGION }}
- name: Sync to S3
if: github.repository_owner == 'trustwallet'
shell: bash
run: |
SYNC_OPTIONS="--follow-symlinks --delete --exclude '*' --include 'dapps/*' --include 'blockchains/*'"
if [ "${{ github.event.inputs.use-size-only }}" == "true" ]; then
SYNC_OPTIONS="$SYNC_OPTIONS --size-only"
fi
eval "aws s3 sync . s3://$AWS_S3_BUCKET $SYNC_OPTIONS"
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
- name: Get changed files
uses: jitterbit/get-changed-files@v1
if: github.event_name == 'push'
id: files
- name: Filter files to invalidate
run: |
echo "::set-output name=paths::$(echo ${{ steps.files.outputs.added_modified }} | tr ' ' '\n' | grep -E 'blockchains/|dapps/' | awk '{print "/"$1}' | tr '\n' ' ')"
if: github.event_name == 'push'
id: filter
- name: Invalidate CloudFront
if: github.repository_owner == 'trustwallet' && github.event_name == 'push' && steps.filter.outputs.paths != ''
uses: chetan/invalidate-cloudfront-action@v2
env:
PATHS: ${{ steps.filter.outputs.paths }}
DISTRIBUTION: ${{ secrets.AWS_DISTRIBUTION }}