diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 00000000..7d46cd80 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,12 @@ +FROM jetpackio/devbox:latest + +# Installing your devbox project +WORKDIR /code +COPY devbox.json devbox.json +COPY devbox.lock devbox.lock +RUN sudo chown -R "${DEVBOX_USER}:${DEVBOX_USER}" /code + + +RUN devbox run -- echo "Installed Packages." + +RUN devbox shellenv --init-hook >> ~/.profile diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..e7ae9f11 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "name": "Devbox Remote Container", + "build": { + "dockerfile": "./Dockerfile", + "context": ".." + }, + "customizations": { + "vscode": { + "settings": {}, + "extensions": [ + "jetpack-io.devbox" + ] + } + }, + "remoteUser": "devbox" +} \ No newline at end of file diff --git a/.github/workflows/command-dispatch.yml b/.github/workflows/command-dispatch.yml index 8d1526f3..45b9ec9d 100644 --- a/.github/workflows/command-dispatch.yml +++ b/.github/workflows/command-dispatch.yml @@ -7,6 +7,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index d82b0128..df3699a3 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -13,6 +13,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 693a6ded..074cd231 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,6 +12,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 167e5ad5..eb374bd6 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -7,6 +7,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -75,7 +76,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -395,7 +396,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 6b4a4bf0..dc4e3ef4 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -8,6 +8,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -76,7 +77,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -324,7 +325,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 891c6692..1819f8d9 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -7,6 +7,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1bcd5ffd..a192efdd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,6 +7,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -75,7 +76,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -370,7 +371,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/resync-build.yml b/.github/workflows/resync-build.yml index bd0258ce..0ba68e3e 100644 --- a/.github/workflows/resync-build.yml +++ b/.github/workflows/resync-build.yml @@ -9,6 +9,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/run-acceptance-tests.yml b/.github/workflows/run-acceptance-tests.yml index f0121002..6b8ad1f7 100644 --- a/.github/workflows/run-acceptance-tests.yml +++ b/.github/workflows/run-acceptance-tests.yml @@ -8,6 +8,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -80,7 +81,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -240,17 +241,17 @@ jobs: # # GitHub documents `jobs.result` as: # - # The result of a job in the reusable workflow. Possible values are success, - # failure, cancelled, or skipped. + # The result of a job in the reusable workflow. Possible values are success, + # failure, cancelled, or skipped. # # GitHub documents `cancelled()` as: # - # Returns true if the workflow was canceled. + # Returns true if the workflow was canceled. # # Combining these terms gives us an intuitive definition of success: # - # We have succeeded when no dependent workflow has failed and the job was - # not cancelled. + # We have succeeded when no dependent workflow has failed and the job was + # not cancelled. # if: (github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository) && @@ -321,7 +322,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/devbox.json b/devbox.json new file mode 100644 index 00000000..e10080eb --- /dev/null +++ b/devbox.json @@ -0,0 +1,19 @@ +{ + "packages": [ + "go@1.21.", + "nodejs@20.", + "python3@3.9", + "dotnet-sdk@6.0.", + "gradle_7@7.6" + ], + "shell": { + "init_hook": [ + "export PATH=\"$(pwd)/bin/:$PATH\"" + ], + "scripts": { + "test": [ + "echo \"Error: no test specified\" && exit 1" + ] + } + } +}