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
4 changes: 4 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
pull_request:
ignore_branches: [ no_test ]

permissions: {}

jobs:

build:
Expand All @@ -19,6 +21,8 @@ jobs:
run: sudo apt-get install -y rabbitmq-server

- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Set up Go
uses: actions/setup-go@v5
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/build_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ on:
pull_request:
ignore_branches: [ no_test ]

permissions: {}

jobs:

build_container_scratch:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Run build_container to generate scratch image
run: scripts/build_container -g scratch -e BASE_IMAGE=scratch
Expand All @@ -22,6 +26,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Run build_container to generate and image using kaniko
run: scripts/build_container --tag kaniko --builder kaniko -t debug -e UID=1234 -e GID=5678
Expand All @@ -37,6 +43,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Run scripts/test
run: scripts/test