Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
--rm armbuilder \
goreleaser build --single-target --clean --snapshot --timeout 60m \
-f .goreleaser/goreleaser-build.yml ${{ inputs.goreleaser_options }}

- uses: actions/upload-artifact@v4
with:
name: linux-arm64-dist
Expand Down Expand Up @@ -98,6 +99,7 @@ jobs:
env:
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}

# Build AMD64 builder image natively (no QEMU needed)
- name: Build AMD64 Builder Image
run: docker buildx build . --platform linux/amd64 --load --tag amdbuilder -f Dockerfile.builder

Expand Down Expand Up @@ -198,15 +200,6 @@ jobs:
env:
DOCKER_CLI_EXPERIMENTAL: "enabled"
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@v10
with:
root-reserve-mb: 32768 # The Go cache (`~/.cache/go-build` and `~/go/pkg`) requires a lot of storage space.
remove-android: "true"
remove-docker-images: "true"
remove-dotnet: "true"
remove-haskell: "true"

- name: Install Dependences
run: sudo apt install libpcap-dev

Expand Down Expand Up @@ -295,4 +288,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
COSIGN_EXPERIMENTAL: "true"
COSIGN_EXPERIMENTAL: "true"
2 changes: 1 addition & 1 deletion fern/fern.config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"organization": "method-security",
"version": "3.47.1"
"version": "3.78.1"
}
6 changes: 3 additions & 3 deletions fern/generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ groups:
pypi-local:
generators:
- name: fernapi/fern-pydantic-model
version: 1.11.1
version: 1.11.2
output:
location: local-file-system
path: ../generated/python
smart-casing: false
pypi-test:
generators:
- name: fernapi/fern-pydantic-model
version: 1.11.1
version: 1.11.2
config:
package_name: methodaws
output:
Expand All @@ -33,7 +33,7 @@ groups:
pypi:
generators:
- name: fernapi/fern-pydantic-model
version: 1.11.1
version: 1.11.2
config:
package_name: methodaws
output:
Expand Down
Loading