Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Build Ubuntu Linux Containers daily #803

Build Ubuntu Linux Containers daily

Build Ubuntu Linux Containers daily #803

Workflow file for this run

name: Build Ubuntu Linux Containers daily
on:
workflow_dispatch:
schedule:
- cron: '5 4 * * *'
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Build
run: |
./build-image.sh ubuntu --no-cache
env:
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
ubuntu-gcc:
runs-on: ubuntu-latest
needs: ubuntu
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Build
run: |
./build-image.sh ubuntu-gcc --no-cache
env:
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
ubuntu-gcc-devel:
runs-on: ubuntu-latest
needs: ubuntu-gcc
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Build
run: |
./build-image.sh ubuntu-gcc-devel --no-cache
env:
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
ubuntu-gcc-release:
runs-on: ubuntu-latest
needs: ubuntu-gcc
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Build
run: |
./build-image.sh ubuntu-gcc-release --no-cache
env:
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
ubuntu-rchk:
runs-on: ubuntu-latest
needs: ubuntu
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Build
run: |
./build-image.sh ubuntu-rchk --no-cache
env:
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}