-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
91 additions
and
421 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
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 |
---|---|---|
|
@@ -8,8 +8,8 @@ Caches that are not in a week are [removed](https://github.com/actions/cache#cac | |
### Inputs | ||
|
||
- `cpu`: CPU target to setup Lazarus for. | ||
- `laz-url`: Lazarus source URL to install. | ||
- `fpc-url`: FPC source URL to install. | ||
- `laz-branch`: Lazarus (gitlab) branch to install | ||
- `fpc-branch`: FPC (gitlab) branch to install | ||
|
||
Supported CPU targets: | ||
- `x86_64`: Windows, Linux, macOS | ||
|
@@ -53,26 +53,24 @@ jobs: | |
- name: Linux 64 | ||
os: ubuntu-latest | ||
cpu: x86_64 | ||
|
||
- name: AArch64 | ||
os: ubuntu-latest | ||
cpu: aarch64 | ||
args: --cpu=aarch64 | ||
|
||
- name: MacOS 64 | ||
os: macos-latest | ||
cpu: x86_64 | ||
args: --widgetset=cocoa | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Install Lazarus | ||
uses: ./ | ||
uses: ollydev/setup-lazarus-fpcup@v2 | ||
with: | ||
cpu: ${{ matrix.config.cpu }} | ||
laz-url: https://svn.freepascal.org/svn/lazarus/tags/lazarus_2_2_0_RC1/ | ||
fpc-url: https://svn.freepascal.org/svn/fpc/tags/release_3_2_2_rc1/ | ||
laz-branch: lazarus_2_2_0_rc1 | ||
fpc-branch: release_3_2_2_rc1 | ||
|
||
- name: Test Installation | ||
if: matrix.config.name != 'AArch64' # AArch64 was cross compiled! | ||
|
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
Oops, something went wrong.