-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
54 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends \ | ||
ca-certificates \ | ||
clang \ | ||
curl \ | ||
git \ | ||
libssl-dev \ | ||
lsb-release \ | ||
make \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN git config --global --add safe.directory /__w/ponyup/ponyup |
15 changes: 15 additions & 0 deletions
15
.ci-dockerfiles/ubuntu24.04-bootstrap-tester/build-and-push.bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
set -o errexit | ||
set -o nounset | ||
|
||
# | ||
# *** You should already be logged in to GHCR when you run this *** | ||
# | ||
|
||
TODAY=$(date +%Y%m%d) | ||
DOCKERFILE_DIR="$(dirname "$0")" | ||
DOCKER_TAG="ghcr.io/ponylang/ponyup-ci-ubuntu24.04-bootstrap-tester:${TODAY}" | ||
|
||
docker build --pull -t "${DOCKER_TAG}" "${DOCKERFILE_DIR}" | ||
docker push "${DOCKER_TAG}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,16 @@ jobs: | |
- name: Bootstrap test | ||
run: SSL=3.0.x .ci-scripts/test-bootstrap.sh | ||
|
||
ubuntu24_04-bootstrap: | ||
name: Ubuntu 24.04 bootstrap | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ghcr.io/ponylang/ponyup-ci-ubuntu24.04-bootstrap-tester:20240425 | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Bootstrap test | ||
run: SSL=3.0.x .ci-scripts/test-bootstrap.sh | ||
|
||
arm64-macos-bootstrap: | ||
name: arm64 MacOS bootstrap | ||
runs-on: macos-14 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Add Ubuntu 24.04 support | ||
|
||
We've added support for identifying Ubuntu 24.04 and downloading packages for it. As of the time of this release, no release versions of `ponyc` are available- only nightly versions. Release versions of `ponyc` will be available once a version of `ponyc` post 0.58.3 is released. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters