Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
652fac3
Backport partially #189
kimikage Apr 30, 2024
d8ac448
Improve `throw_converterror` (#205)
kimikage Jul 24, 2020
efa40a6
Systemize fixed point types to be tested (#208)
kimikage Aug 6, 2020
c1a642f
Backport partially #207
kimikage Apr 30, 2024
a5e7782
Add workaround for `clamp` with poor promotion
kimikage May 1, 2024
3e5b858
Use sampler-based Random API (#206)
kimikage Aug 8, 2020
40f7177
Backport partially "Improve overflow error message (#214)"
kimikage Aug 15, 2020
83c63cc
Avoid inconsistent behavior of `unsafe_trunc` for `BigFloat` (#212)
kimikage Aug 15, 2020
e3b58a1
Change test targets of `Fixed` (#218)
kimikage Aug 19, 2020
25d4411
Backport partially "Optimize multiplication for Normed (#213)"
kimikage Aug 24, 2020
4bc8cfc
Backport partially "Specialize multiplication for `Fixed` (#220)"
kimikage Aug 25, 2020
400456c
Fix `% Normed{UInt32}` on ARM and Improve `NaN % FixedPoint` (#223)
kimikage Aug 29, 2020
53ca2d8
Backport partially "Commonize test codes (#224)"
kimikage Aug 31, 2020
c845201
Backport partially #222
kimikage Aug 31, 2020
927afc0
Backport partially "Add checked, wrapping and saturating arithmetic f…
kimikage Sep 11, 2020
9e5c68e
add doctest in unittest (#229)
johnnychen94 Sep 19, 2020
b126c1b
Remove old iterator methods (#231)
kimikage Sep 20, 2020
de7faee
Backport partially #235
kimikage Apr 30, 2024
3d371dc
Use GitHub Actions for unit testing on Arm arch. (#238)
kimikage Dec 19, 2020
8bdec42
Improve generation of typealiases (#233)
kimikage Dec 19, 2020
55a7232
Backport partially #243
kimikage May 1, 2024
26e9a34
Avoid selecting pre-release in ARM CI (#244)
kimikage Mar 16, 2021
115b274
Work around rounding errors in nightly test (#248)
kimikage Apr 19, 2021
3149fb6
fix tests on 1.7 (#253)
Aug 2, 2021
8c9770e
Remove assertions in "src/precompile.jl" (#254)
kimikage Aug 3, 2021
a936502
CI: test Julia 1.6 and update TagBot permission (#257)
johnnychen94 Jul 7, 2022
37d724e
CI: rename julia-runtest branch (#263)
timholy Mar 16, 2023
53f2a3a
Merge pull request #270 from JuliaMath/vc/random
oscardssmith Feb 14, 2024
2c564ef
ci: fix codecov (#276)
inkydragon Apr 5, 2024
0af6e82
Fix Arm CI workflow (#279)
kimikage Apr 5, 2024
703ace4
Fix test for exponentially growing `promote_type` (#280)
kimikage Apr 6, 2024
841f8b1
Enable package extension for Statistics (#277)
hyrodium Apr 13, 2024
f1621b8
Use `StableRNG` in tests (#278)
kimikage Apr 13, 2024
e7a6e1e
Add tests with Aqua.jl (#283)
hyrodium Apr 13, 2024
df9dd8a
Avoid multiple `include`s of "test/common.jl." (#286)
kimikage Apr 13, 2024
e9a7a43
Update macOS test targets (#290)
kimikage Apr 28, 2024
14f8f14
Add test for `unsafe_trunc` returning arbitrary values (#289)
kimikage Apr 29, 2024
6e5484d
Fix `_unsafe_trunc` to reduce the likelihood of arbitrary values (#291)
kimikage Apr 30, 2024
cb271e5
Add `workflow-dispatch` trigger to UnitTest.yml (#295)
kimikage Apr 30, 2024
295b8d1
Update workflows
kimikage May 1, 2024
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
Prev Previous commit
Next Next commit
Fix Arm CI workflow (#279)
* Use ubuntu-latest for Arm CI (host and container)
* Fix download URL of nightly build binary
* Use julia-actions/setup-julia@v2 for the host and use the same version as the target
  • Loading branch information
kimikage committed May 1, 2024
commit 0af6e82cb3ff8338e1a39673d0a0c4a8db5e43e1
29 changes: 17 additions & 12 deletions .github/workflows/UnitTestArm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,32 @@ on:
- master
pull_request:
workflow_dispatch:
permissions:
actions: write
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: ['1.0', '1', '1.6', 'nightly']
os: [ubuntu-20.04]
distro: [ubuntu20.04]
os: [ubuntu-latest]
distro: [ubuntu_latest]
arch: [aarch64]

steps:
- uses: actions/checkout@v2

- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v1
- name: Download Julia Binary
run: >
julia -e '
using Pkg; Pkg.add("JSON"); using JSON;
if "${{ matrix.julia-version }}" == "nightly";
url = "https://julialangnightlies-s3.julialang.org/bin/linux/${{ matrix.arch }}/julia-latest-linux${{ matrix.arch }}.tar.gz";
url = "https://julialangnightlies-s3.julialang.org/bin/linux/${{ matrix.arch }}/julia-latest-linux-${{ matrix.arch }}.tar.gz";
else;
path = download("https://julialang-s3.julialang.org/bin/versions.json");
json = JSON.parsefile(path);
Expand All @@ -40,26 +46,25 @@ jobs:

- name: Extract Julia Files
run: |
cd /tmp
tar -xzf julia-aarch64.tar.gz -C /home/runner/work/
mv /home/runner/work/julia-*/ /home/runner/work/julia/
rm julia-aarch64.tar.gz
mkdir -p /home/runner/work/julia/
tar -xf /tmp/julia-aarch64.tar.gz --strip-components=1 -C /home/runner/work/julia/
rm /tmp/julia-aarch64.tar.gz

- uses: uraimo/run-on-arch-action@v2.0.9
- uses: uraimo/run-on-arch-action@v2.7.1
name: Unit Test
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
dockerRunArgs: |
-v "/home/runner/work/julia:/home/runner/work/julia"
-v "/home/runner/.julia/registries/General:/root/.julia/registries/General"
-v "/home/runner/.julia/registries:/root/.julia/registries"
--net=host
install: |
ln -s /home/runner/work/julia/bin/julia /usr/local/bin/julia
echo /home/runner/work/julia/lib > /etc/ld.so.conf.d/julia.conf
mkdir -p /root/.julia/registries/General
run: |
julia -e 'using InteractiveUtils; versioninfo();'
julia --compile=min -O0 -e 'using InteractiveUtils; versioninfo();'
julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
Expand Down