File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -102,11 +102,15 @@ jobs:
102102 path : cover/*
103103
104104 - name : Check reproducible builds
105+ if : ${{ matrix.deterministic }}
106+ run : taskset 1 make check_reproducible
107+
108+ - name : Check git is not required
105109 if : ${{ matrix.deterministic }}
106110 run : |
107111 rm -rf .git
108- # Recompile System without .git
109- taskset 1 make recompile_system check_reproducible
112+ cd lib/elixir
113+ elixirc --ignore-module-conflict -o ebin "lib/**/*.ex"
110114
111115 test_windows :
112116 name : Windows Server 2022, OTP ${{ matrix.otp_version }}
Original file line number Diff line number Diff line change @@ -141,9 +141,6 @@ install: compile
141141 done
142142 " $( MAKE) " install_man
143143
144- recompile_system :
145- $(Q ) cd lib/elixir && ../../$(ELIXIRC_MIN_SIG ) " lib/system.ex" -o ebin;
146-
147144check_reproducible : compile
148145 $(Q ) echo " ==> Checking for reproducible builds..."
149146 $(Q ) rm -rf lib/* /tmp/ebin_reproducible/
You can’t perform that action at this time.
0 commit comments