Skip to content

Commit

Permalink
+gitac: tigervnc
Browse files Browse the repository at this point in the history
ref docker-baseimg-gui

tiger, fix path

drop plat arg
  • Loading branch information
sam#gemmi-win10 committed Oct 17, 2023
1 parent 008b1f1 commit 4b9765f
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/docker-image-tigervnc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: docker-image-tiger
on:
push:
branches: [ "dev", "feat/ubt-armv7" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
# runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

- name: Setup QEMU
# uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2 #ref docker-baseimage-gui
with:
platforms: arm,arm64,ppc64le,mips64,s390x

- name: Setup Docker Buildx
# uses: docker/setup-buildx-action@
uses: docker/setup-buildx-action@v2
with:
driver-opts: network=host

- name: Call buildx.sh(build with ali's cache, push)
run: |
# VARS
echo ${{ github.repository_owner }} #infrastlabs
echo ${{ github.repository }}
echo ${{ secrets.DOCKER_REGISTRY_PW_DOCKERHUB }} #fill not show in log
# INFO
pwd && ls -l
docker version
free -h; df -h; ip a |grep inet; uname -a;
# ENV
export DOCKER_REGISTRY_USER_infrastSubUser2=${{ secrets.DOCKER_REGISTRY_USER_INFRASTSUBUSER2 }}
export DOCKER_REGISTRY_PW_infrastSubUser2=${{ secrets.DOCKER_REGISTRY_PW_INFRASTSUBUSER2 }}
export DOCKER_REGISTRY_USER_dockerhub=${{ secrets.DOCKER_REGISTRY_USER_DOCKERHUB }}
export DOCKER_REGISTRY_PW_dockerhub=${{ secrets.DOCKER_REGISTRY_PW_DOCKERHUB }}
# BUILD
echo core; cd ubt-core/src/gcc/static;
# sh buildx.sh compile2
bash alpine-build.sh docker.io
# post-build:
# name: Post-build
# needs: [ build ]
# runs-on: ubuntu-20.04
# steps:
# - name: Prepare
# id: prep
# run: |
# # Determine the release type.
# echo 123
# notification:
# name: Notification
# needs: [ build, post-build ]
# runs-on: ubuntu-20.04
# if: ${{ always() }}

0 comments on commit 4b9765f

Please sign in to comment.