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

Change supported FreeBSD to 13.0 #3743

Merged
merged 2 commits into from
Apr 14, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ARCH=x86-64

# Triple construction
VENDOR=unknown
OS=freebsd-12.2
OS=freebsd-13.0
TRIPLE=${ARCH}-${VENDOR}-${OS}

# Build parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ARCH=x86-64

# Triple construction
VENDOR=unknown
OS=freebsd-12.2
OS=freebsd-13.0
TRIPLE=${ARCH}-${VENDOR}-${OS}

# Build parameters
Expand Down
22 changes: 11 additions & 11 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ task:
only_if: $CIRRUS_PR != ''

freebsd_instance:
image: freebsd-12-2-release-amd64
image: freebsd-13-0-release-amd64
cpu: 8
memory: 24

name: "PR: x86-64-unknown-freebsd-12.2"
name: "PR: x86-64-unknown-freebsd-13.0"

install_script:
- echo "FETCH_RETRY = 6" >> /usr/local/etc/pkg.conf
Expand All @@ -99,7 +99,7 @@ task:

libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 lib/CMakeLists.txt` freebsd-12.2"
fingerprint_script: echo "`md5 lib/CMakeLists.txt` freebsd-13.0"
populate_script: gmake libs arch=x86-64 build_flags=-j8

configure_script:
Expand Down Expand Up @@ -301,11 +301,11 @@ task:
only_if: $CIRRUS_CRON == "nightly"

freebsd_instance:
image: freebsd-12-2-release-amd64
image: freebsd-13-0-release-amd64
cpu: 8
memory: 24

name: "nightly: x86-64-unknown-freebsd-12.2"
name: "nightly: x86-64-unknown-freebsd-13.0"

environment:
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
Expand All @@ -319,11 +319,11 @@ task:

libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 lib/CMakeLists.txt` freebsd-12.2"
fingerprint_script: echo "`md5 lib/CMakeLists.txt` freebsd-13.0"
populate_script: gmake libs arch=x86-64 build_flags=-j8

nightly_script:
- bash .ci-scripts/x86-64-unknown-freebsd-12.2-nightly.bash
- bash .ci-scripts/x86-64-unknown-freebsd-13.0-nightly.bash

task:
only_if: $CIRRUS_CRON == "nightly"
Expand Down Expand Up @@ -447,11 +447,11 @@ task:
only_if: $CIRRUS_TAG =~ '^\d+\.\d+\.\d+$'

freebsd_instance:
image: freebsd-12-2-release-amd64
image: freebsd-13-0-release-amd64
cpu: 8
memory: 24

name: "release: x86-64-unknown-freebsd-12.2"
name: "release: x86-64-unknown-freebsd-13.0"

environment:
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
Expand All @@ -465,11 +465,11 @@ task:

libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 lib/CMakeLists.txt` freebsd-12.2"
fingerprint_script: echo "`md5 lib/CMakeLists.txt` freebsd-13.0"
populate_script: gmake libs arch=x86-64 build_flags=-j8

release_script:
- bash .ci-scripts/x86-64-unknown-freebsd-12.2-release.bash
- bash .ci-scripts/x86-64-unknown-freebsd-13.0-release.bash

task:
only_if: $CIRRUS_TAG =~ '^\d+\.\d+\.\d+$'
Expand Down
3 changes: 3 additions & 0 deletions .release-notes/freebsd13.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Update supported FreeBSD to FreeBSD 13.0

As of this release, we now do all FreeBSD testing on FreeBSD 13.0 and all ponyc prebuilt packages are built on FreeBSD 13.0. We will make a best effort to not break prior versions of FreeBSD while they are "supported".
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Prebuilt Pony binaries are available on a number of platforms. They are built us

Prebuilt Pony installations will use clang as the default C compiler and clang++ as the default C++ compiler. If you prefer to use different compilers, such as gcc and g++, these defaults can be overridden by setting the `$CC` and `$CXX` environment variables to your compiler of choice.

## FreeBSD 12.2
## FreeBSD 13.0

Prebuilt FreeBSD 12.2 nightly packages are available for download from our [Cloudsmith repository](https://cloudsmith.io/~ponylang/repos/nightlies/packages/?q=name%3A%27%5Eponyc-x86-64-unknown-freebsd-12.2.tar.gz%24%27).
Prebuilt FreeBSD 13.0 nightly packages are available for download from our [Cloudsmith repository](https://cloudsmith.io/~ponylang/repos/nightlies/packages/?q=name%3A%27%5Eponyc-x86-64-unknown-freebsd-13.0.tar.gz%24%27).

Starting with the next ponyc release, you'll also be able to download prebuilt ponyc releases from Cloudsmith. We'll update this page with the link once they become available.

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can verify that the release artifacts were successfully built and uploaded b
Package names will be:

* ponyc-x86-64-apple-darwin.tar.gz
* ponyc-x86-64-unknown-freebsd-12.2.tar.gz
* ponyc-x86-64-unknown-freebsd-13.0.tar.gz
* ponyc-x86-64-pc-windows-msvc.zip
* ponyc-x86-64-unknown-linux-centos8.tar.gz
* ponyc-x86-64-unknown-linux-gnu.tar.gz
Expand Down