Skip to content

Commit 87ed3b9

Browse files
Merge pull request #14 from fastly/ngwaf-compute-integration
ngwaf-compute-integration
2 parents bc8749c + 6e01711 commit 87ed3b9

File tree

10 files changed

+706
-1
lines changed

10 files changed

+706
-1
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build ngwaf-compute-integration
2+
on: push
3+
4+
jobs:
5+
build-ngwaf-compute-integration:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
10+
- name: Set up Fastly CLI
11+
uses: fastly/compute-actions/setup@v8
12+
with:
13+
cli_version: '10.14.1' # optional, defaults to 'latest'
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
16+
- name: Build Compute Package
17+
uses: fastly/compute-actions/build@v8
18+
with:
19+
verbose: true # optionally enables verbose output, defaults to false
20+
project_directory: ./ngwaf-compute-integration

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,5 @@ gold-standard-starter/.terraform.lock.hcl
3333
ngwaf-terraform-edge-deploy/terraform.tfvars
3434
local_lab/*
3535

36-
ngwaf-compute-integration/target/*
36+
37+
ngwaf-compute-integration/target/*
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build]
2+
target = "wasm32-wasi"

ngwaf-compute-integration/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/target
2+
**/*.rs.bk
3+
/bin
4+
/pkg
5+
6+

0 commit comments

Comments
 (0)