Skip to content

Remove FreeBSD pony install tools #134

Remove FreeBSD pony install tools

Remove FreeBSD pony install tools #134

Workflow file for this run

name: PR
on: pull_request
jobs:
superlinter:
name: Lint bash, docker, markdown, and yaml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint codebase
uses: docker://github/super-linter:v3.8.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: true
VALIDATE_BASH: true
VALIDATE_DOCKERFILE: true
VALIDATE_MD: true
VALIDATE_YAML: true
verify-changelog:
name: Verify CHANGELOG is valid
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/changelog-tool:release
steps:
- uses: actions/checkout@v1
- name: Verify CHANGELOG
run: changelog-tool verify
release-vs-ponyc-release:
name: Verify release mode on Linux with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:release
steps:
- uses: actions/checkout@v1
- name: Test with the most recent ponyc release
run: make ci config=release
debug-vs-ponyc-release:
name: Verify debug mode on Linux with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:release
steps:
- uses: actions/checkout@v1
- name: Test with the most recent ponyc release
run: make ci config=debug
macos-debug-vs-ponyc-release:
name: Verify PR builds on macOS with most recent ponyc release
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: install pony tools
run: bash .ci-scripts/macOS-install-release-pony-tools.bash
- name: Test with the most recent ponyc release
run: |
export PATH=/Users/runner/.local/share/ponyup/bin/:$PATH
make ci config=debug
macos-release-vs-ponyc-release:
name: Verify PR builds on macOS with most recent ponyc release
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: install pony tools
run: bash .ci-scripts/macOS-install-release-pony-tools.bash
- name: Test with the most recent ponyc release
run: |
export PATH=/Users/runner/.local/share/ponyup/bin/:$PATH
make ci config=release
windows-debug-vs-ponyc-release:
name: Verify PR builds on Windows with most recent ponyc release
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
- name: Test with most recent ponyc release
run: |
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
Expand-Archive -Force -Path C:\ponyc.zip -DestinationPath C:\ponyc;
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/corral-x86-64-pc-windows-msvc.zip -OutFile C:\corral.zip;
Expand-Archive -Force -Path C:\corral.zip -DestinationPath C:\ponyc;
$env:PATH = 'C:\ponyc\bin;' + $env:PATH;
.\make.ps1 -Command test -Config Debug 2>&1;
windows-release-vs-ponyc-release:
name: Verify PR builds on Windows with most recent ponyc release
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
- name: Test with most recent ponyc release
run: |
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
Expand-Archive -Force -Path C:\ponyc.zip -DestinationPath C:\ponyc;
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/corral-x86-64-pc-windows-msvc.zip -OutFile C:\corral.zip;
Expand-Archive -Force -Path C:\corral.zip -DestinationPath C:\ponyc;
$env:PATH = 'C:\ponyc\bin;' + $env:PATH;
.\make.ps1 -Command test -Config Release 2>&1;