Skip to content

Commit

Permalink
[WIP] Switch to meson docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
amezin committed Jan 20, 2024
1 parent bf70036 commit 70a78b2
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 11 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/ddterm/ci-docker-image:2023.12.26.0
image: ghcr.io/ddterm/ci-docker-image:meson

steps:
- name: Checkout
Expand Down Expand Up @@ -94,10 +94,6 @@ jobs:
run: make schemas 2>&1 | tee schemas.log
if: ${{ always() && steps.checkout.conclusion == 'success' }}

- name: Validate .desktop file
run: make desktop-file-validate 2>&1 | tee desktop-file.log
if: ${{ always() && steps.checkout.conclusion == 'success' }}

- name: Validate Gtk .ui files
run: xvfb-run make gtk-builder-validate 2>&1 | tee gtk-builder.log
if: ${{ always() && steps.checkout.conclusion == 'success' }}
Expand All @@ -122,6 +118,23 @@ jobs:
run: testspace --verbose eslint.xml "*.log{lint}"
if: ${{ always() && steps.setup_testspace.outcome == 'success' }}

<<<<<<< HEAD
=======
pack:
runs-on: ubuntu-latest
container:
image: ghcr.io/ddterm/ci-docker-image:meson

steps:
- name: Checkout
uses: actions/checkout@v4

- run: git config --global --replace-all safe.directory "$GITHUB_WORKSPACE"

- name: Enable generic error matcher
run: echo "::add-matcher::.github/problem-matchers/generic.json"

>>>>>>> 6b1304f ([WIP] Switch to meson docker image)
- name: Build extension package
id: pack
run: xvfb-run make pack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-po.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

runs-on: ubuntu-latest
container:
image: ghcr.io/ddterm/ci-docker-image:2023.12.26.0
image: ghcr.io/ddterm/ci-docker-image:meson

strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
pot:
runs-on: ubuntu-latest
container:
image: ghcr.io/ddterm/ci-docker-image:2023.12.26.0
image: ghcr.io/ddterm/ci-docker-image:meson

steps:
- name: Get app token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: ghcr.io/ddterm/ci-docker-image:2023.12.26.0
image: ghcr.io/ddterm/ci-docker-image:meson

steps:
- name: Get app token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

runs-on: ubuntu-latest
container:
image: ghcr.io/ddterm/ci-docker-image:2023.12.26.0
image: ghcr.io/ddterm/ci-docker-image:meson
options: --privileged --cgroupns=host --tmpfs /tmp --tmpfs /run

strategy:
Expand Down
2 changes: 1 addition & 1 deletion do-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

IMAGE=ghcr.io/ddterm/ci-docker-image
# renovate: datasource=docker depName=ghcr.io/ddterm/ci-docker-image
IMAGE_VERSION=2023.12.26.0
IMAGE_VERSION=meson

SCRIPT_REALPATH="$(realpath "$0")"
SCRIPT_DIR="${SCRIPT_REALPATH%/*}"
Expand Down
2 changes: 1 addition & 1 deletion do-in-podman.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

IMAGE=ghcr.io/ddterm/ci-docker-image
# renovate: datasource=docker depName=ghcr.io/ddterm/ci-docker-image
IMAGE_VERSION=2023.12.26.0
IMAGE_VERSION=meson

SCRIPT_REALPATH="$(realpath "$0")"
SCRIPT_DIR="${SCRIPT_REALPATH%/*}"
Expand Down

0 comments on commit 70a78b2

Please sign in to comment.