Skip to content

Commit

Permalink
Merge pull request #47 from l-monninger/main
Browse files Browse the repository at this point in the history
[CICD] rolling back supported platforms; changing e2e release test de…
  • Loading branch information
l-monninger authored Sep 24, 2023
2 parents acf945e + f8696fb commit db61eff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,9 @@ jobs:


build-and-docker:
if: true
needs:
- prepare-release
- pre-release-x86_64-linux
- pre-release-aarch64-linux
runs-on:
labels: movement-runner
steps:
Expand All @@ -318,15 +316,15 @@ jobs:
IMAGE_TAG: ${{ needs.prepare-release.outputs.release_tag }} # Or any other tag you'd like
run: |
docker buildx create --use
docker buildx build --build-arg VERSION=${{ needs.prepare-release.outputs.release_tag }} -f ./docker/cli.dockerfile --platform linux/amd64,linux/arm64 -t $DOCKER_HUB_REPOSITORY:$IMAGE_TAG -t latest . --push
docker buildx build --build-arg VERSION=${{ needs.prepare-release.outputs.release_tag }} -f ./docker/cli.dockerfile --platform linux/amd64 -t $DOCKER_HUB_REPOSITORY:$IMAGE_TAG -t latest . --push
- name: Full developer container
env:
DOCKER_HUB_REPOSITORY: mvlbs/m1-dev # Change to your Docker Hub repository name
IMAGE_TAG: ${{ needs.prepare-release.outputs.release_tag }} # Or any other tag you'd like
run: |
docker buildx create --use
docker buildx build --build-arg VERSION=${{ needs.prepare-release.outputs.release_tag }} -f ./docker/dev.dockerfile --platform linux/amd64,linux/arm64 -t $DOCKER_HUB_REPOSITORY:$IMAGE_TAG -t latest . --push
docker buildx build --build-arg VERSION=${{ needs.prepare-release.outputs.release_tag }} -f ./docker/dev.dockerfile --platform linux/amd64 -t $DOCKER_HUB_REPOSITORY:$IMAGE_TAG -t latest . --push
- name: General container # for now this is just the dev container
env:
Expand All @@ -339,6 +337,7 @@ jobs:
run-tests:
needs:
- prepare-release
- build-and-docker
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Build and Test Subnet
run: |
cd ./m1
# cargo test --lib # this should only be the lib tests
cargo test
- name: Update Badge
run: |
Expand Down

0 comments on commit db61eff

Please sign in to comment.