Skip to content

Fix classloader.c for aarch64 #1889

Fix classloader.c for aarch64

Fix classloader.c for aarch64 #1889

name: Cinder OSS Build and Test
on: [push]
env:
REGISTRY: ghcr.io
CINDER_BUILD_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/cinder-build
CINDER_RUNTIME_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/cinder-runtime
CINDER_EXPLORER_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/cinder-explorer
CINDER_EXPLORER_AWS_REGION: us-west-1
CINDER_EXPLORER_ECS_CLUSTER: trycinder-test-Cluster-YNmjygvkMeeY
CINDER_EXPLORER_ECS_SERVICE: trycinder-test-webserver-Service-vvi2qdzv9lgX
CINDER_EXPLORER_AUTO_DEPLOY_REPO: facebookincubator/cinder
CINDER_EXPLORER_AUTO_DEPLOY_BRANCH: ${{ format('refs/heads/{0}', github.event.repository.default_branch) }}
jobs:
cinder-oss-build-and-test-job:
runs-on: ubuntu-latest
permissions:
id-token: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the GitHub container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Build and push the "build" image (only using sha, since it didn't pass tests yet)
- name: Extract metadata for pre-test Cinder Docker image
id: buildmeta
uses: docker/metadata-action@v4
with:
images: ${{ env.CINDER_BUILD_IMAGE_NAME }}
# we publish the [untested] image using the branch + sha (e.g. "cinder-3.10.162db45") for debuggability
# note: `/` in the branch name (e.g "cinder/3.10") are auto-converted to `-` by this action
tags: type=sha,prefix={{branch}}.
- name: Build and push Cinder Docker image
uses: docker/build-push-action@v4
with:
context: .
tags: ${{ steps.buildmeta.outputs.tags }}
push: true
target: build
file: .github/workflows/cinder/Dockerfile
# Run tests, and build and push the runtime image using the branch and latest tags if tests pass
- name: Run Cinder Tests
run: docker run --rm -w /cinder/build ${{ steps.buildmeta.outputs.tags }} ./oss-cinder-test.sh
- name: Extract metadata for tested Cinder Docker image push
id: runtimemeta
uses: docker/metadata-action@v4
with:
images: ${{ env.CINDER_RUNTIME_IMAGE_NAME }}
# once the tests pass, we publish the runtime image using the sha and branch name (e.g. "cinder-3.10")
# if this is the default branch, we also publish the image as "latest"
tags: |
type=sha,prefix={{branch}}.
type=ref,event=branch
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
- name: Publish new version of latest Cinder Docker images
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.runtimemeta.outputs.tags }}
labels: ${{ steps.runtimemeta.outputs.labels }}
# the build should be efficient, reusing the build image layers from a previous step
target: runtime
file: .github/workflows/cinder/Dockerfile
# Also build and push Cinder Explorer image if tests passed
- name: Extract metadata for Cinder Explorer app Docker image push
id: explorermeta
uses: docker/metadata-action@v4
with:
images: ${{ env.CINDER_EXPLORER_IMAGE_NAME }}
# publish the explorer image using the sha and branch name
# if this is the default branch, we also publish the image as "latest"
tags: |
type=sha,prefix={{branch}}.
type=ref,event=branch
type=raw,value=latest,enable=${{ github.ref == env.CINDER_EXPLORER_AUTO_DEPLOY_BRANCH }}
- name: Build and Push Cinder Explorer Docker Images
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.explorermeta.outputs.tags }}
labels: ${{ steps.explorermeta.outputs.labels }}
target: explorer
file: .github/workflows/cinder/Dockerfile
# Redeploy Cinder Explorer to AWS ECS using the new Cinder Explorer image (built above)
# by forcing a new deployment that forces Fargate to pull the latest version of the image
# (run auto-deploy only on the default branch of the main repo (not forks))
- name: Configure AWS credentials
if: |
github.repository == env.CINDER_EXPLORER_AUTO_DEPLOY_REPO &&
github.ref == env.CINDER_EXPLORER_AUTO_DEPLOY_BRANCH
uses: aws-actions/configure-aws-credentials@v3
with:
role-to-assume: ${{ secrets.AWS_CINDER_EXPLORER_BOT_DEPLOYER_ARN }}
role-session-name: UpdateCinderExplorer
aws-region: ${{ env.CINDER_EXPLORER_AWS_REGION }}
- name: Deploy Cinder Explorer to ECS
if: |
github.repository == env.CINDER_EXPLORER_AUTO_DEPLOY_REPO &&
github.ref == env.CINDER_EXPLORER_AUTO_DEPLOY_BRANCH
run: |
aws ecs update-service \
--region ${{ env.CINDER_EXPLORER_AWS_REGION }} \
--cluster ${{ env.CINDER_EXPLORER_ECS_CLUSTER }} \
--service ${{ env.CINDER_EXPLORER_ECS_SERVICE }} \
--force-new-deployment