Skip to content

Commit

Permalink
v1.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miralandlabs committed Mar 21, 2024
1 parent 48dc32e commit dece20d
Show file tree
Hide file tree
Showing 197 changed files with 11,691 additions and 5,048 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ updates:
timezone: Asia/Shanghai
#labels:
# - "automerge"
open-pull-requests-limit: 6
open-pull-requests-limit: 0
20 changes: 20 additions & 0 deletions .github/workflows/close-new-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Close new issues

on:
issues:
types: [opened, reopened]

jobs:
comment-and-close:
runs-on: ubuntu-latest
steps:
- shell: bash
env:
ISSUE_NUMBER: ${{ github.event.issue.number }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
COMMENT: >
This repository is no longer in use. Please re-open this
issue in the agave repo: https://github.com/anza-xyz/agave
run: >
gh issue close "$ISSUE_NUMBER" --comment "$COMMENT"
20 changes: 20 additions & 0 deletions .github/workflows/close-new-pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Close new pull requests

on:
pull_request:
types: [opened, reopened]

jobs:
comment-and-close:
runs-on: ubuntu-latest
steps:
- shell: bash
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
COMMENT: >
This repository is no longer in use. Please re-open this
pull request in the agave repo: https://github.com/anza-xyz/agave
run: >
gh pr close "$PR_NUMBER" --comment "$COMMENT"
13 changes: 2 additions & 11 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,8 @@ jobs:
id: build
shell: bash
run: |
choco install openssl --version=3.1.1
if [[ -d "C:\Program Files\OpenSSL" ]]; then
echo "OPENSSL_DIR: C:\Program Files\OpenSSL"
export OPENSSL_DIR="C:\Program Files\OpenSSL"
elif [[ -d "C:\Program Files\OpenSSL-Win64" ]]; then
echo "OPENSSL_DIR: C:\Program Files\OpenSSL-Win64"
export OPENSSL_DIR="C:\Program Files\OpenSSL-Win64"
else
echo "can't determine OPENSSL_DIR"
exit 1
fi
vcpkg install openssl:x64-windows-static-md
vcpkg integrate install
choco install protoc
export PROTOC="C:\ProgramData\chocolatey\lib\protoc\tools\bin\protoc.exe"
source /tmp/env.sh
Expand Down
Loading

0 comments on commit dece20d

Please sign in to comment.