Skip to content

ngwaf-compute-integration #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from 13 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
20 changes: 20 additions & 0 deletions .github/workflows/build-ngwaf-compute-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build ngwaf-compute-integration
on: push

jobs:
build-ngwaf-compute-integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Fastly CLI
uses: fastly/compute-actions/setup@v8
with:
cli_version: '10.14.1' # optional, defaults to 'latest'
token: ${{ secrets.GITHUB_TOKEN }}

- name: Build Compute Package
uses: fastly/compute-actions/build@v8
with:
verbose: true # optionally enables verbose output, defaults to false
project_directory: ./ngwaf-compute-integration
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,7 @@ override.tf.json
# example: *tfplan*
gold-standard-starter/.terraform.lock.hcl
ngwaf-terraform-edge-deploy/terraform.tfvars
local_lab/*
local_lab/*
ngwaf-compute-integration/latency_testing.sh
ngwaf-compute-integration/fastly.toml
ngwaf-compute-integration/fastly.toml
2 changes: 2 additions & 0 deletions ngwaf-compute-integration/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build]
target = "wasm32-wasi"
6 changes: 6 additions & 0 deletions ngwaf-compute-integration/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/target
**/*.rs.bk
/bin
/pkg


Loading
Loading