Loading .github/workflows/CI_AMD64.yml→.github/workflows/CI_LINUX.yml +20 −6 Original line number Diff line number Diff line name: CI AMD64 name: CI LINUX on: push: branches: - 'dev' # pull_request: # branches: [ "master" ] - '**' env: DOCKERFILE: Dockerfile-py3-amd64 DOCKERFILE: Dockerfile-py3-linux jobs: test: runs-on: ubuntu-latest steps: - name: Checkout Repo uses: actions/checkout@v3 - name: Run Tests run: | echo "Building image to test" ./build-and-test.sh ${{ env.DOCKERFILE }} build_and_push_to_registry: needs: test name: Push Docker image to Docker Hub runs-on: ubuntu-latest steps: Loading @@ -30,10 +40,14 @@ jobs: with: images: batonogov/pyinstaller-linux - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Build and push Docker image uses: docker/build-push-action@v3 with: context: . platforms: linux/amd64, linux/arm64 file: ${{ env.DOCKERFILE }} push: true tags: ${{ steps.meta.outputs.tags }} Loading .github/workflows/CI_WIN64.yml→.github/workflows/CI_WINDOWS.yml +16 −6 Original line number Diff line number Diff line name: CI WIN64 name: CI WINDOWS on: push: branches: - 'dev' # pull_request: # branches: [ "master" ] - '**' env: DOCKERFILE: Dockerfile-py3-win64 DOCKERFILE: Dockerfile-py3-windows jobs: test: runs-on: ubuntu-latest steps: - name: Checkout Repo uses: actions/checkout@v3 - name: Run Tests run: | echo "Building image to test" ./build-and-test.sh ${{ env.DOCKERFILE }} build_and_push_to_registry: needs: test name: Push Docker image to Docker Hub runs-on: ubuntu-latest steps: Loading .gitignore +0 −2 Original line number Diff line number Diff line Loading @@ -162,5 +162,3 @@ cython_debug/ # Other .DS_Store .fleet act.sh test/ Dockerfile-py3-amd64→Dockerfile-py3-linux +0 −0 File moved. View file Dockerfile-py3-win64→Dockerfile-py3-windows +0 −0 File moved. View file Loading
.github/workflows/CI_AMD64.yml→.github/workflows/CI_LINUX.yml +20 −6 Original line number Diff line number Diff line name: CI AMD64 name: CI LINUX on: push: branches: - 'dev' # pull_request: # branches: [ "master" ] - '**' env: DOCKERFILE: Dockerfile-py3-amd64 DOCKERFILE: Dockerfile-py3-linux jobs: test: runs-on: ubuntu-latest steps: - name: Checkout Repo uses: actions/checkout@v3 - name: Run Tests run: | echo "Building image to test" ./build-and-test.sh ${{ env.DOCKERFILE }} build_and_push_to_registry: needs: test name: Push Docker image to Docker Hub runs-on: ubuntu-latest steps: Loading @@ -30,10 +40,14 @@ jobs: with: images: batonogov/pyinstaller-linux - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Build and push Docker image uses: docker/build-push-action@v3 with: context: . platforms: linux/amd64, linux/arm64 file: ${{ env.DOCKERFILE }} push: true tags: ${{ steps.meta.outputs.tags }} Loading
.github/workflows/CI_WIN64.yml→.github/workflows/CI_WINDOWS.yml +16 −6 Original line number Diff line number Diff line name: CI WIN64 name: CI WINDOWS on: push: branches: - 'dev' # pull_request: # branches: [ "master" ] - '**' env: DOCKERFILE: Dockerfile-py3-win64 DOCKERFILE: Dockerfile-py3-windows jobs: test: runs-on: ubuntu-latest steps: - name: Checkout Repo uses: actions/checkout@v3 - name: Run Tests run: | echo "Building image to test" ./build-and-test.sh ${{ env.DOCKERFILE }} build_and_push_to_registry: needs: test name: Push Docker image to Docker Hub runs-on: ubuntu-latest steps: Loading
.gitignore +0 −2 Original line number Diff line number Diff line Loading @@ -162,5 +162,3 @@ cython_debug/ # Other .DS_Store .fleet act.sh test/