Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PIPELINE: use debian stable container for builds #139

Merged
merged 1 commit into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/build-and-deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ jobs:
os: linux
arch: amd64
base-image: ubuntu-latest
build-image: amd64/ubuntu:latest
build-image: amd64/debian:stable
ext: ""
- target: linux-i686
os: linux
arch: i686
base-image: ubuntu-latest
build-image: i386/ubuntu:latest
build-image: i386/debian:stable
ext: ""
- target: linux-armhf
os: linux
arch: armhf
base-image: ubuntu-latest
build-image: arm32v7/ubuntu:latest
build-image: arm32v7/debian:stable
ext: ""
- target: linux-aarch64
os: linux
arch: aarch64
base-image: ubuntu-latest
build-image: arm64v8/ubuntu:latest
build-image: arm64v8/debian:stable
ext: ""
- target: windows-x64
os: windows
Expand All @@ -47,7 +47,7 @@ jobs:
ext: ".exe"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Prepare Build Environemnt
Expand Down Expand Up @@ -82,8 +82,7 @@ jobs:
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}"
- name: Set date
run: |
sudo timedatectl set-timezone Europe/Amsterdam
echo "DATE=$(date "+%Y%m%d-%H%M%S")" >> $GITHUB_ENV
echo "DATE=$(TZ="Europe/Amsterdam" date "+%Y%m%d-%H%M%S")" >> $GITHUB_ENV
- name: Deploy
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/build-and-deploy-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ jobs:
os: linux
arch: amd64
base-image: ubuntu-latest
build-image: amd64/ubuntu:latest
build-image: amd64/debian:stable
ext: ""
- target: linux-i686
os: linux
arch: i686
base-image: ubuntu-latest
build-image: i386/ubuntu:latest
build-image: i386/debian:stable
ext: ""
- target: linux-armhf
os: linux
arch: armhf
base-image: ubuntu-latest
build-image: arm32v7/ubuntu:latest
build-image: arm32v7/debian:stable
ext: ""
- target: linux-aarch64
os: linux
arch: aarch64
base-image: ubuntu-latest
build-image: arm64v8/ubuntu:latest
build-image: arm64v8/debian:stable
ext: ""
- target: windows-x64
os: windows
Expand All @@ -45,7 +45,7 @@ jobs:
ext: ".exe"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Prepare Build Environemnt
Expand Down Expand Up @@ -80,8 +80,7 @@ jobs:
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}"
- name: Set date
run: |
sudo timedatectl set-timezone Europe/Amsterdam
echo "DATE=$(date "+%Y%m%d-%H%M%S")" >> $GITHUB_ENV
echo "DATE=$(TZ="Europe/Amsterdam" date "+%Y%m%d-%H%M%S")" >> $GITHUB_ENV
- name: Deploy
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ jobs:
os: linux
arch: amd64
base-image: ubuntu-latest
build-image: amd64/ubuntu:latest
build-image: amd64/debian:stable
ext: ""
- target: linux-i686
os: linux
arch: i686
base-image: ubuntu-latest
build-image: i386/ubuntu:latest
build-image: i386/debian:stable
ext: ""
- target: linux-armhf
os: linux
arch: armhf
base-image: ubuntu-latest
build-image: arm32v7/ubuntu:latest
build-image: arm32v7/debian:stable
ext: ""
- target: linux-aarch64
os: linux
arch: aarch64
base-image: ubuntu-latest
build-image: arm64v8/ubuntu:latest
build-image: arm64v8/debian:stable
ext: ""
- target: windows-x64
os: windows
Expand All @@ -45,7 +45,7 @@ jobs:
ext: ".exe"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Prepare Build Environemnt
Expand Down