chore(deps): bump kentaro-m/auto-assign-action from 248761c4feb3917c1b0444e33fad1a50093b9847 to 7ae38e468e64dec0af17820972bc4915aa511ec2 #11898
Workflow file for this run
This file contains hidden or 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
name: CI | |
on: | |
push: | |
branches: [main, release-*] | |
paths-ignore: ['**.md', '**.png', '**.jpg', '**.svg', '**/docs/**'] | |
pull_request: | |
branches: [main, release-*] | |
paths-ignore: ['**.md', '**.png', '**.jpg', '**.svg', '**/docs/**'] | |
schedule: | |
- cron: '0 4 * * *' | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: Test | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
submodules: recursive | |
- name: Install Go | |
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b | |
with: | |
go-version-file: go.mod | |
- name: Enable local IPv6 | |
run: |- | |
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=0 | |
sudo ip -6 addr add fd00::1/64 dev eth0 | |
sudo ip addr | |
- name: Run Unit tests | |
run: |- | |
# switch to installed go | |
sudo ln -sf `which go` `sudo which go` | |
go version | |
sudo go version | |
sudo make test-coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage.txt | |
flags: unittests | |
build: | |
name: Build | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
submodules: recursive | |
- name: Setup Go | |
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b | |
with: | |
go-version-file: go.mod | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 | |
- name: Cache Docker layers | |
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Build Scheduler Image | |
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 | |
with: | |
context: . | |
file: build/images/scheduler/Dockerfile | |
push: false | |
tags: dragonflyoss/scheduler:latest | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Build Manager Image | |
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 | |
with: | |
context: . | |
file: build/images/manager/Dockerfile | |
push: false | |
tags: dragonflyoss/manager:latest | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Build Dfdaemon Image | |
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 | |
with: | |
context: . | |
file: build/images/dfdaemon/Dockerfile | |
push: false | |
tags: dragonflyoss/dfdaemon:latest | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Move cache | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache |