-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/844-configuration-service-create-ske…
…leton-for-device-model-storage
- Loading branch information
Showing
26 changed files
with
425 additions
and
1,150 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -36,6 +36,8 @@ jobs: | |
|
||
# Since env variables can't be passed to reusable workflows, we need to pass them as outputs | ||
setup-env: | ||
# This job is currently disabled to allow running ci on PRs from forks | ||
if: false | ||
name: Setup Environment | ||
runs-on: ${{ inputs.runner || 'ubuntu-22.04' }} | ||
outputs: | ||
|
@@ -46,6 +48,8 @@ jobs: | |
run: | | ||
echo "Setting up environment" | ||
build-and-push-build-kit: | ||
# This job is currently disabled to allow running ci on PRs from forks | ||
if: false | ||
name: Build and Push Build Kit | ||
uses: everest/everest-ci/.github/workflows/[email protected] | ||
needs: setup-env | ||
|
@@ -67,10 +71,12 @@ jobs: | |
build: | ||
name: Build and Unit Tests | ||
needs: build-and-push-build-kit | ||
# needs: build-and-push-build-kit | ||
runs-on: ${{ inputs.runner || 'ubuntu-22.04' }} | ||
env: | ||
BUILD_KIT_IMAGE: ${{ needs.build-and-push-build-kit.outputs.one_image_tag_long }} | ||
# Currently the build-kit-base image is used to allow running ci on PRs from forks | ||
# BUILD_KIT_IMAGE: ${{ needs.build-and-push-build-kit.outputs.one_image_tag_long }} | ||
BUILD_KIT_IMAGE: ghcr.io/everest/everest-ci/build-kit-base:v1.3.1 | ||
steps: | ||
- name: Format branch name for cache key | ||
run: | | ||
|
@@ -140,20 +146,22 @@ jobs: | |
name: Integration Tests | ||
needs: | ||
- build | ||
- build-and-push-build-kit | ||
# - build-and-push-build-kit | ||
env: | ||
BUILD_KIT_IMAGE: ${{ needs.build-and-push-build-kit.outputs.one_image_tag_long }} | ||
# Currently the build-kit-base image is used to allow running ci on PRs from forks | ||
# BUILD_KIT_IMAGE: ${{ needs.build-and-push-build-kit.outputs.one_image_tag_long }} | ||
BUILD_KIT_IMAGE: ghcr.io/everest/everest-ci/build-kit-base:v1.3.1 | ||
runs-on: ${{ inputs.runner || 'ubuntu-22.04' }} | ||
steps: | ||
- name: Download dist dir | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: dist | ||
- name: Extract dist.tar.gz | ||
run: | | ||
tar -xzf ${{ github.workspace }}/dist.tar.gz -C ${{ github.workspace }} | ||
- name: Download wheels | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].7 | ||
with: | ||
name: wheels | ||
path: wheels | ||
|
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
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.