testing updated binutils/clang, sync with current fc39 versions #50
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
name: CI-Docker | |
on: | |
push: | |
branches: | |
- master | |
- test | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Extract DOCKER_TAG using tag name | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
echo "DOCKER_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV | |
- name: Use default DOCKER_TAG | |
if: startsWith(github.ref, 'refs/tags/') != true | |
run: | | |
echo "DOCKER_TAG=latest" >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- uses: docker/build-push-action@v2 | |
with: | |
push: true | |
tags: ${{ github.repository }}:${{ env.DOCKER_TAG }} | |
- name: Send Compile action | |
run: | | |
export DISPATCH_ACTION="$(echo run_build)" | |
echo "NEW_DISPATCH_ACTION=$DISPATCH_ACTION" >> $GITHUB_ENV | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
repository: ${{ github.repository_owner }}/orbisdev-sdkvanilla | |
token: ${{ secrets.DISPATCH_TOKEN }} | |
event-type: ${{ env.NEW_DISPATCH_ACTION }} | |
client-payload: '{"ref": "${{ github.ref }}"}' |