-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexei Dodon <adodon@cisco.com>
- Loading branch information
Showing
25 changed files
with
885 additions
and
706 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'Check disk space' | ||
description: 'Show available disk space' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- shell: bash | ||
if: always() | ||
run: | | ||
cd $GITHUB_WORKSPACE | ||
set -x | ||
df -h | ||
sudo ls -lRh /tmp/* || true | ||
sudo du -sh /tmp || true | ||
sudo du -sh /tmp/* || true | ||
sudo find /tmp/ -size +5M | sudo xargs ls -lh | ||
du -sh ./* || true | ||
find ./ -size +5M | xargs ls -lh | ||
sudo du -sh /var/ | ||
sudo du -sh /var/lib/docker/ | ||
du -sh /home/runner/work/ | ||
set +x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: 'Setup localstack service' | ||
description: 'Download & run localstack container' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- shell: bash | ||
run: | | ||
pip install localstack # Install LocalStack cli | ||
docker pull localstack/localstack:2.2 # Make sure to pull the latest version of the image | ||
localstack start -d # Start LocalStack in the background | ||
echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container | ||
localstack wait -t 30 # to become ready before timing out | ||
echo "Startup complete" | ||
aws dynamodb --endpoint-url http://localhost:4566 --region "us-east-2" create-table --table-name BlobTable --attribute-definitions AttributeName=Digest,AttributeType=S --key-schema AttributeName=Digest,KeyType=HASH --provisioned-throughput ReadCapacityUnits=10,WriteCapacityUnits=5 | ||
env: | ||
AWS_ACCESS_KEY_ID: fake | ||
AWS_SECRET_ACCESS_KEY: fake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: 'Stop localstack' | ||
description: 'Stop localstack container' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- shell: bash | ||
if: always() | ||
run: localstack stop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
release: | ||
types: | ||
- published | ||
name: build | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
build-arch: | ||
name: Build ZOT multiarch | ||
permissions: | ||
contents: write | ||
packages: write | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
os: [linux, darwin, freebsd] | ||
arch: [amd64, arm64] | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
- uses: ./.github/actions/clean-runner | ||
- name: Install go | ||
uses: actions/setup-go@v4 | ||
with: | ||
cache: false | ||
go-version: 1.20.x | ||
- name: Cache go dependencies | ||
id: cache-go-dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/go/pkg/mod | ||
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go-mod- | ||
- name: Cache go build output | ||
id: cache-go-build | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cache/go-build | ||
key: ${{ matrix.os }}-${{ matrix.arch }}-go-build-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ matrix.os }}-${{ matrix.arch }}-go-build- | ||
- name: Install go dependencies | ||
if: steps.cache-go-dependencies.outputs.cache-hit != 'true' | ||
run: | | ||
cd $GITHUB_WORKSPACE | ||
go mod download | ||
- name: Install other dependencies | ||
run: | | ||
cd $GITHUB_WORKSPACE | ||
go install github.com/swaggo/swag/cmd/swag@v1.8.12 | ||
sudo apt-get update | ||
sudo apt-get install rpm | ||
sudo apt-get install snapd | ||
sudo apt-get install libgpgme-dev libassuan-dev libbtrfs-dev libdevmapper-dev pkg-config | ||
git clone https://github.com/containers/skopeo -b v1.12.0 $GITHUB_WORKSPACE/src/github.com/containers/skopeo | ||
cd $GITHUB_WORKSPACE/src/github.com/containers/skopeo && \ | ||
make bin/skopeo && \ | ||
sudo cp bin/skopeo /usr/bin && \ | ||
rm -rf $GITHUB_WORKSPACE/src/github.com/containers/skopeo | ||
cd $GITHUB_WORKSPACE | ||
curl -Lo notation.tar.gz https://github.com/notaryproject/notation/releases/download/v1.0.0-rc.4/notation_1.0.0-rc.4_linux_amd64.tar.gz | ||
sudo tar xvzf notation.tar.gz -C /usr/bin notation | ||
rm -f notation.tar.gz | ||
- uses: ./.github/actions/check-diskspace | ||
- name: Run build | ||
timeout-minutes: 80 | ||
run: | | ||
echo "Building for $OS:$ARCH" | ||
cd $GITHUB_WORKSPACE | ||
make binary binary-minimal binary-debug cli bench exporter-minimal | ||
env: | ||
OS: ${{ matrix.os }} | ||
ARCH: ${{ matrix.arch }} | ||
- uses: ./.github/actions/check-diskspace | ||
|
||
- name: Generate GraphQL Introspection JSON on Release | ||
if: github.event_name == 'release' && github.event.action == 'published' && matrix.os == 'linux' && matrix.arch == 'amd64' | ||
run: | | ||
bin/zot-linux-amd64 serve examples/config-search.json & | ||
sleep 10 | ||
curl -X POST -H "Content-Type: application/json" -d @.pkg/debug/githubWorkflows/introspection-query.json http://localhost:5000/v2/_zot/ext/search | jq > bin/zot-gql-introspection-result.json | ||
pkill zot | ||
- if: github.event_name == 'release' && github.event.action == 'published' | ||
name: Publish artifacts on releases | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: bin/z* | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
file_glob: true |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# .github/workflows/dco.yml | ||
name: DCO | ||
on: | ||
pull_request: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.