commit
This commit is contained in:
1
lib/forge-std/.github/CODEOWNERS
vendored
Normal file
1
lib/forge-std/.github/CODEOWNERS
vendored
Normal file
@@ -0,0 +1 @@
|
||||
* @danipopes @klkvr @mattsse @grandizzy @yash-atreya @zerosnacks @onbjerg @0xrusowsky
|
||||
6
lib/forge-std/.github/dependabot.yml
vendored
Normal file
6
lib/forge-std/.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
137
lib/forge-std/.github/workflows/ci.yml
vendored
Normal file
137
lib/forge-std/.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,137 @@
|
||||
name: CI
|
||||
|
||||
permissions: {}
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: build +${{ matrix.toolchain }} ${{ matrix.flags }}
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
permissions:
|
||||
contents: read
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
toolchain: [stable, nightly]
|
||||
flags:
|
||||
- ""
|
||||
- --via-ir
|
||||
- --use solc:0.8.17 --via-ir
|
||||
- --use solc:0.8.17
|
||||
- --use solc:0.8.0
|
||||
- --use solc:0.7.6
|
||||
- --use solc:0.7.0
|
||||
- --use solc:0.6.2
|
||||
- --use solc:0.6.12
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
persist-credentials: false
|
||||
- uses: foundry-rs/foundry-toolchain@v1
|
||||
- run: forge --version
|
||||
- run: |
|
||||
case "${{ matrix.flags }}" in
|
||||
*"solc:0.8.0"* | *"solc:0.7"* | *"solc:0.6"*)
|
||||
forge build --skip test --skip Config --skip StdConfig --skip LibVariable --deny-warnings ${{ matrix.flags }}
|
||||
;;
|
||||
*)
|
||||
forge build --skip test --deny-warnings ${{ matrix.flags }}
|
||||
;;
|
||||
esac
|
||||
# via-ir compilation time checks.
|
||||
- if: contains(matrix.flags, '--via-ir')
|
||||
run: forge build --skip test --deny-warnings ${{ matrix.flags }} --contracts 'test/compilation/*'
|
||||
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
permissions:
|
||||
contents: read
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
toolchain: [stable, nightly]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
persist-credentials: false
|
||||
- uses: foundry-rs/foundry-toolchain@v1
|
||||
with:
|
||||
version: ${{ matrix.toolchain }}
|
||||
- run: forge --version
|
||||
- run: forge test -vvv
|
||||
|
||||
fmt:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
persist-credentials: false
|
||||
- uses: foundry-rs/foundry-toolchain@v1
|
||||
- run: forge --version
|
||||
- run: forge fmt --check
|
||||
|
||||
typos:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
persist-credentials: false
|
||||
- uses: crate-ci/typos@2d0ce569feab1f8752f1dde43cc2f2aa53236e06 # v1
|
||||
|
||||
codeql:
|
||||
name: Analyze (${{ matrix.language }})
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
security-events: write
|
||||
actions: read
|
||||
contents: read
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- language: actions
|
||||
build-mode: none
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v4
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
build-mode: ${{ matrix.build-mode }}
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v4
|
||||
with:
|
||||
category: "/language:${{matrix.language}}"
|
||||
|
||||
ci-success:
|
||||
runs-on: ubuntu-latest
|
||||
if: always()
|
||||
needs:
|
||||
- build
|
||||
- test
|
||||
- fmt
|
||||
- typos
|
||||
- codeql
|
||||
timeout-minutes: 10
|
||||
steps:
|
||||
- name: Decide whether the needed jobs succeeded or failed
|
||||
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
|
||||
with:
|
||||
jobs: ${{ toJSON(needs) }}
|
||||
36
lib/forge-std/.github/workflows/sync.yml
vendored
Normal file
36
lib/forge-std/.github/workflows/sync.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
name: Sync Release Branch
|
||||
|
||||
permissions: {}
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- created
|
||||
|
||||
jobs:
|
||||
sync-release-branch:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
if: startsWith(github.event.release.tag_name, 'v1')
|
||||
steps:
|
||||
- name: Check out the repo
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
persist-credentials: true
|
||||
fetch-depth: 0
|
||||
ref: v1
|
||||
|
||||
# The email is derived from the bots user id,
|
||||
# found here: https://api.github.com/users/github-actions%5Bbot%5D
|
||||
- name: Configure Git
|
||||
run: |
|
||||
git config user.name github-actions[bot]
|
||||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
||||
|
||||
- name: Sync Release Branch
|
||||
run: |
|
||||
git fetch --tags
|
||||
git checkout v1
|
||||
git reset --hard ${GITHUB_REF}
|
||||
git push --force
|
||||
Reference in New Issue
Block a user