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

GH-690 Run GitHub CI on Ubuntu, Linux and macOS #770

Merged
merged 2 commits into from
Mar 5, 2024
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
15 changes: 0 additions & 15 deletions .appveyor.yml

This file was deleted.

10 changes: 4 additions & 6 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
<p align="center">
<img src="https://github.com/panda-lang/panda/workflows/Panda%20CI/badge.svg" alt="Panda CI">
<a href="https://travis-ci.com/panda-lang/panda"><img src="https://travis-ci.com/panda-lang/panda.svg?branch=master" alt="Build Status"></a>
<a href="https://ci.appveyor.com/project/panda-lang/panda/branch/master"><img src="https://ci.appveyor.com/api/projects/status/whatvc77sgtjb1ip/branch/master?svg=true" alt="AppVeyor"></a>
<a href="https://www.codefactor.io/repository/github/panda-lang/panda"><img src="https://www.codefactor.io/repository/github/panda-lang/panda/badge" alt="CodeFactor"></a>
<a href="https://lgtm.com/projects/g/panda-lang/panda/context:java"><img src="https://img.shields.io/lgtm/grade/java/g/panda-lang/panda.svg?logo=lgtm&logoWidth=18" alt="LGTM"></a>
<hr>

<p align="center">
Expand Down Expand Up @@ -36,13 +34,13 @@ The latest indev build
</dependency>
```

Maven repository: [repo.panda-lang.org](https://repo.panda-lang.org/)
Maven repository: [maven.reposilite.com](https://maven.reposilite.com/#/releases)

```xml
<repository>
<id>panda-repository</id>
<name>Panda Repository</name>
<url>https://repo.panda-lang.org/</url>
<id>reposilite</id>
<name>reposilite-repository</name>
<url>https://maven.reposilite.com/releases</url>
</repository>
```

Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Panda CI

on: [push]
on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java_version: [11, 17, 21]
os: [windows-latest, macos-14, macos-13, ubuntu-latest] # Macos 13 is x86-64 and 14 is aarch64

steps:
- uses: actions/checkout@v1
Expand Down
Loading