Compare commits
No commits in common. "3d2fdb8372cfeb4cada6ce39d92614d373fc9e61" and "afaedcbe9257f4557cad343615b968a5edbbf5dc" have entirely different histories.
3d2fdb8372
...
afaedcbe92
38
.github/workflows/ci.yaml
vendored
38
.github/workflows/ci.yaml
vendored
@ -1,38 +0,0 @@
|
|||||||
name: CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
zig-version: [master]
|
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
||||||
include:
|
|
||||||
- zig-version: "0.12.1"
|
|
||||||
os: ubuntu-latest
|
|
||||||
- zig-version: "0.13.0"
|
|
||||||
os: ubuntu-latest
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup Zig
|
|
||||||
uses: mlugg/setup-zig@v1
|
|
||||||
with:
|
|
||||||
version: ${{ matrix.zig-version }}
|
|
||||||
|
|
||||||
- name: Check Formatting
|
|
||||||
run: zig fmt --ast-check --check .
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: zig build --summary all
|
|
@ -319,6 +319,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
const conf_header = upstream.path(switch (tinfo.cpu.arch) {
|
const conf_header = upstream.path(switch (tinfo.cpu.arch) {
|
||||||
.aarch64,
|
.aarch64,
|
||||||
.aarch64_be,
|
.aarch64_be,
|
||||||
|
.aarch64_32,
|
||||||
=> source_header_prefix ++ "arch/aarch64/opensslconf.h",
|
=> source_header_prefix ++ "arch/aarch64/opensslconf.h",
|
||||||
.x86 => source_header_prefix ++ "arch/i386/opensslconf.h",
|
.x86 => source_header_prefix ++ "arch/i386/opensslconf.h",
|
||||||
.riscv64 => source_header_prefix ++ "arch/riscv64/opensslconf.h",
|
.riscv64 => source_header_prefix ++ "arch/riscv64/opensslconf.h",
|
||||||
@ -355,6 +356,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
switch (tinfo.cpu.arch) {
|
switch (tinfo.cpu.arch) {
|
||||||
.aarch64,
|
.aarch64,
|
||||||
.aarch64_be,
|
.aarch64_be,
|
||||||
|
.aarch64_32,
|
||||||
=> libressl_libs.libcrypto.addIncludePath(
|
=> libressl_libs.libcrypto.addIncludePath(
|
||||||
upstream.path(libcrypto_src_prefix ++ "bn/arch/aarch64"),
|
upstream.path(libcrypto_src_prefix ++ "bn/arch/aarch64"),
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user