Skip to content

Commit

Permalink
PIPELINE: use debian stable container for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscon committed May 29, 2024
1 parent cf48f59 commit 6df4bd2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
11 changes: 5 additions & 6 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 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
11 changes: 5 additions & 6 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 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
8 changes: 4 additions & 4 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 Down

0 comments on commit 6df4bd2

Please sign in to comment.