From 16a2294cd13a03f1a8c378728eb7f04a5431bc99 Mon Sep 17 00:00:00 2001 From: tobyxdd Date: Wed, 28 Jun 2023 19:23:04 -0700 Subject: [PATCH] ci: add build workflow, other GitHub configs, etc. --- .github/FUNDING.yml | 1 + .github/dependabot.yml | 10 ++++++++ .github/workflows/dev-build-hy2.yml | 40 +++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 .github/FUNDING.yml create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/dev-build-hy2.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..ca06c4d --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +custom: [ 'https://hysteria.network/docs/donations/' ] \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5445036 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/dev-build-hy2.yml b/.github/workflows/dev-build-hy2.yml new file mode 100644 index 0000000..3577063 --- /dev/null +++ b/.github/workflows/dev-build-hy2.yml @@ -0,0 +1,40 @@ +name: "Build WIP Hysteria 2" + +on: + push: + branches: + - 'wip-hy2' + +jobs: + + build: + name: Build + runs-on: ubuntu-latest + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: true + + steps: + + - name: Check out + uses: actions/checkout@v3 + + - name: Setup Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + + - name: Setup Python # This is for the build script + uses: actions/setup-python@v4 + with: + python-version: '3.11' + + - name: Run build script + env: + HY_APP_PLATFORMS: 'windows/amd64,linux/amd64,linux/arm64,darwin/amd64,darwin/arm64' + run: 'python hyperbole.py build -r' + + - name: Archive + uses: actions/upload-artifact@v3 + with: + name: hy2-wip-${{ github.sha }} + path: build \ No newline at end of file